public RatingServices(IBookingServices bookingServices, IRentalOfferServices rentalOfferServices, CarpoolingContext context, IMapper mapper) { _context = context; _mapper = mapper; bookingRequest = bookingServices; rentalOfferRequest = rentalOfferServices; }
public CreditContractController( dbwebContext context, IBookingServices ibookService, IUserServices iuserService, ICustomerServices icustService, IRelationService irelaService, IContractGroupService icontGroupService, IContractTypeService iconTypeService, IZoneService izoneService, IBranchService ibranchService, ISysParameterService isysParamService, IStatusService istatusService ) { ctx = context; iBookService = ibookService; iUserService = iuserService; iCustService = icustService; iRelaService = irelaService; iContGroupService = icontGroupService; iContTypeService = iconTypeService; iZoneService = izoneService; iBranchService = ibranchService; iSysParamService = isysParamService; iStatusService = istatusService; }
public RentalOfferServices(IVehicleServices vehicleServices, IBookingServices bookingServices, CarpoolingContext context, IMapper mapper) { _context = context; _mapper = mapper; vehicleRequest = vehicleServices; bookingRequest = bookingServices; }
public AdminController(IStaffServices iStaffServices, IContactInformationServices iContactInformationServices, IServiceServices iServiceServices, ISalaryServices iSalaryServices, IReferenceServices iReferenceServices, INotificationServices iNotificationServices, IBookingServices iBookingServices, IBedServices iBedServices, IStockServices iStockServices, ICustomerServices iCustomerServices) { logger.EnterMethod(); this._iStaffServices = iStaffServices; this._iContactInformationServices = iContactInformationServices; this._iServiceServices = iServiceServices; this._iSalaryServices = iSalaryServices; this._iReferenceServices = iReferenceServices; this._iNotificationServices = iNotificationServices; this._iBookingServices = iBookingServices; this._iBedServices = iBedServices; this._iStockServices = iStockServices; this._iCustomerServices = iCustomerServices; logger.Info("Success set value to attributes"); logger.LeaveMethod(); }
public SelectFlights(ISupplierAgencyServices _supplierAgencyServices, IBookingServices _bookingServices) { this.supplierAgencyServices = _supplierAgencyServices; this.bookingServices = _bookingServices; var apiClient = new ApiClient(); partnerClient = new PartnerClient(apiClient); }
public IssueTicket(ISupplierAgencyServices _supplierAgencyServices, IBookingServices _bookingServices) { this.supplierAgencyServices = _supplierAgencyServices; this.bookingServices = _bookingServices; var apiClient = new ApiClient(); partnerClient = new PartnerClient(apiClient); }
public GetTripDetails(ISupplierAgencyServices _supplierAgencyServices, IBookingServices _bookingServices) { this.supplierAgencyServices = _supplierAgencyServices; this.bookingServices = _bookingServices; var apiClient = new ApiClient(); partnerClient = new PartnerClient(apiClient); }
public BookingController(PlannerContext context, IEventServices eventServices, IEmailService mailServices, IBookingServices bookingServices) { Context = context; EventServices = eventServices; EmailServices = mailServices; BookingServices = bookingServices; }
public CreditCalculatesController( dbwebContext context, IBookingServices iBookingService, ISysParameterService isysParamService, ICustomerServices icustService ) { _context = context; iBookService = iBookingService; iSysParamService = isysParamService; iCustomerService = icustService; }
public CreateModel(IBookingServices services, IMakinaServices makinaServices, ApplicationDbContext dbContext) { _services = services; _makinaServices = makinaServices; _context = dbContext; }
public BookingController(IBookingServices services) { bookingServices = services; }
public BookingController(dbwebContext context, IBookingServices iBookingService) { ctx = context; iBooking = iBookingService; }
public DeleteModel(IBookingServices services) { _services = services; }
public BookingController(IBookingServices bookingServices) { _bookingServices = bookingServices; }
public BookingModelsController(IBookingServices bookingServices) { this.bookingServices = bookingServices; }
public BookingModelsController() { this.bookingServices = new BookingServices(); mailservices = new MailServices(); }
public IndexModel(IBookingServices services, ApplicationDbContext context) { _services = services; _context = context; }
public EditModel(IBookingServices services, IMakinaServices makinaServices) { _services = services; _makinaServices = makinaServices; }
public BookingController(IBookingServices bookingService) { _bookingService = bookingService ?? throw new ArgumentNullException(nameof(bookingService)); }
public BookingController(IBookingServices bookingServices) { bookingRequest = bookingServices; }
public BookingController(IBookingServices bookingServices, IRoomServices roomServices) { _bookingServices = bookingServices; _roomServices = roomServices; }