コード例 #1
0
 public EfSwimLaneRepository(KanbanContext context) : base(context)
 {
     _context = context;
     dbSet    = context.Set <SwimLane>();
 }
コード例 #2
0
 public EfPriorityRepository(KanbanContext context) : base(context)
 {
     this.context = context;
 }
コード例 #3
0
 public EfCardTypeRepository(KanbanContext context) : base(context)
 {
     this.context = context;
 }
コード例 #4
0
 public EfBoardRepository(KanbanContext context) : base(context)
 {
     this.context = context;
 }
コード例 #5
0
 public EfUnitOfWork(KanbanContext context)
 {
     this.context = context;
 }
コード例 #6
0
 public EfCardTaskRepository(KanbanContext context) : base(context)
 {
     _context = context;
 }