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