protected BaseRepository(PgsKanbanContext context)
 {
     _context = context;
 }
 public UserBoardRepository(PgsKanbanContext context) : base(context)
 {
     _userBoards = context.UserBoards;
 }
Beispiel #3
0
 public CommentRepository(PgsKanbanContext context) : base(context)
 {
     _comments = context.Comments;
 }
Beispiel #4
0
 public ListRepository(PgsKanbanContext context) : base(context)
 {
     _lists = context.Lists;
 }
 public CardRepository(PgsKanbanContext context) : base(context)
 {
     _cards = context.Cards;
 }
Beispiel #6
0
 public BoardRepository(PgsKanbanContext context) : base(context)
 {
     _boards = context.Boards;
 }
 public UserRepository(PgsKanbanContext context) : base(context)
 {
 }