Example #1
0
 public CourseRepository(InciOneSoftDbContext _db)
     : base(_db)
 {
 }
Example #2
0
 public UniversityRepository(InciOneSoftDbContext _db)
     : base(_db)
 {
 }
Example #3
0
 public PersonRepository(InciOneSoftDbContext _db)
     : base(_db)
 {
 }
Example #4
0
 public CatalogRepository(InciOneSoftDbContext _db)
     : base(_db)
 {
 }
 public InstitutionRepository(InciOneSoftDbContext _db)
     : base(_db)
 {
 }
Example #6
0
 public UnitOfWork(InciOneSoftDbContext db,
                   IServiceProvider serviceProvider)
 {
     _db = db;
     _serviceProvider = serviceProvider;
 }
Example #7
0
 public ProgrammRepository(InciOneSoftDbContext _db)
     : base(_db)
 {
 }