Ejemplo n.º 1
0
 public RentUpdateService(IRentDataAccess rentDataAccess, ICompanyGetService companyGetService,
                          ICarGetService carGetService)
 {
     RentDataAccess    = rentDataAccess;
     CarGetService     = carGetService;
     CompanyGetService = companyGetService;
 }
Ejemplo n.º 2
0
 public CarController(ILogger <CarController> logger, IMapper mapper, ICarCreateService carCreateService, ICarGetService carGetService, ICarUpdateService carUpdateService)
 {
     this.Logger           = logger;
     this.CarCreateService = carCreateService;
     this.CarGetService    = carGetService;
     this.CarUpdateService = carUpdateService;
     this.Mapper           = mapper;
 }