public RentReturnService(RentCarDbContext rentCarDbContext,
                          ICarRentInformationService carRentInformationService)
 {
     _rentCarDbContext          = rentCarDbContext;
     _carRentInformationService = carRentInformationService;
 }
 public MarcasController(RentCarDbContext context)
 {
     _context = context;
 }
 public VehiculosController(RentCarDbContext context)
 {
     _context = context;
 }
 public FuelTypeService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #5
0
 public VehicleColorService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public CarRentInformationService(RentCarDbContext dbContext, IVehicleService vehicleService)
 {
     _dbContext      = dbContext;
     _vehicleService = vehicleService;
 }
Example #7
0
 public TipoPersonasController(RentCarDbContext context)
 {
     _context = context;
 }
 public ModelosController(RentCarDbContext context)
 {
     _context = context;
 }
 public VehicleCheckService(RentCarDbContext dbContext, ICarRentInformationService carRentInformationService)
 {
     _dbContext = dbContext;
     _carRentInformationService = carRentInformationService;
 }
Example #10
0
 public FuelTypeRepository(RentCarDbContext context, IValidator <FuelType> validator)
     : base(context, validator)
 {
 }
Example #11
0
 public ManufacturerService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #12
0
 public VehicleRepository(RentCarDbContext context, IValidator <Vehicle> validator)
     : base(context, validator)
 {
 }
Example #13
0
 public GenericRepository()
 {
     _context = new RentCarDbContext();
     _set     = _context.Set <T>();
 }
 public TransmissionTypeService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #15
0
 public RentRepository(RentCarDbContext context, IValidator <Rent> validator)
     : base(context, validator)
 {
 }
Example #16
0
 public ShiftTypeService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #17
0
 public TandasController(RentCarDbContext context)
 {
     _context = context;
 }
Example #18
0
 public VehicleTypeService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #19
0
 public TipoCombustiblesController(RentCarDbContext context)
 {
     _context = context;
 }
Example #20
0
 public UserRepository(RentCarDbContext context, IValidator <User> validator)
     : base(context, validator)
 {
 }
 public FuelTankStateService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #22
0
 public ModelService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #23
0
 public Repository(RentCarDbContext ctx)
 {
     _ctx = ctx;
 }
 public RentStateService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #25
0
 public ClientesController(RentCarDbContext context)
 {
     _context = context;
 }
Example #26
0
 public EmployeeService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #27
0
 public EmpleadosController(RentCarDbContext context)
 {
     _context = context;
 }
 public RentaDevolucionesController(RentCarDbContext context)
 {
     _context = context;
 }
Example #29
0
 public ClientService(RentCarDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #30
0
 public EmployeeRepository(RentCarDbContext context, IValidator <Employee> validator)
     : base(context, validator)
 {
 }