public UserRepository(MyTrelloContext dbContext) : base(dbContext)
 {
 }
Example #2
0
 public TaskRepository(MyTrelloContext dbContext) : base(dbContext)
 {
 }
Example #3
0
 public ChannelRepository(MyTrelloContext dbContext) : base(dbContext)
 {
 }
Example #4
0
 public UnitOfWork()
 {
     _dbContext = new MyTrelloContext();
 }
Example #5
0
 public ChatMessageRepository(MyTrelloContext dbContext) : base(dbContext)
 {
 }