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