Example #1
0
 public CommonUnitOfWork(TodoAppNetCoreDBContext context)
 {
     _context = context;
 }
Example #2
0
 public TaskRepository(TodoAppNetCoreDBContext context) : base(context)
 {
     _context = context;
 }
Example #3
0
 public RepositoryBase(TodoAppNetCoreDBContext context)
 {
     _context = context;
 }
 public StateStatusRepository(TodoAppNetCoreDBContext context) : base(context)
 {
     _context = context;
 }