add changes
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using MongoDB.Driver;
|
||||
using server.Models;
|
||||
|
||||
namespace server.Persistence
|
||||
{
|
||||
public interface IDbContext
|
||||
{
|
||||
public IMongoCollection<Season> Seasons { get; set; }
|
||||
|
||||
public IMongoCollection<Episode> Episodes { get; set; }
|
||||
|
||||
public IMongoCollection<Character> Characters { get; set; }
|
||||
|
||||
public IMongoCollection<Quote> Quotes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user