Example #1
0
 public RoleRepository(RentalServiceContext context)
 {
     db = context;
 }
 public RentalPointRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
 public RentalCompanyRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
 public UnitOfWork(RentalServiceContext context)
 {
     db = context;
 }
Example #5
0
 public BrandRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
 public UserRepository(RentalServiceContext context)
 {
     db = context;
 }
Example #7
0
 public ReservationRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
 public CountryRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }