public RentServicesController(RentCompanyContext context)
 {
     _context = context;
 }
 public ReservationDetailsController(RentCompanyContext context, IEmailService emailService)
 {
     _context   = context;
     this.email = emailService;
 }
 public OfficeDetailsController(RentCompanyContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public CarInfoesController(RentCompanyContext context)
 {
     _context = context;
 }
 public ConfigurationPriceController(RentCompanyContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public RatesController(RentCompanyContext context)
 {
     _context = context;
 }