Ejemplo n.º 1
0
 public RoleRepository(RentalServiceContext context)
 {
     db = context;
 }
 public RentalPointRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
 public RentalCompanyRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
Ejemplo n.º 4
0
 public UnitOfWork(RentalServiceContext context)
 {
     db = context;
 }
Ejemplo n.º 5
0
 public BrandRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
 public UserRepository(RentalServiceContext context)
 {
     db = context;
 }
Ejemplo n.º 7
0
 public ReservationRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }
 public CountryRepository(RentalServiceContext context)
     : base(context)
 {
     db = context;
 }