Example #1
0
 public RatingServices(IBookingServices bookingServices, IRentalOfferServices rentalOfferServices, CarpoolingContext context, IMapper mapper)
 {
     _context           = context;
     _mapper            = mapper;
     bookingRequest     = bookingServices;
     rentalOfferRequest = rentalOfferServices;
 }
Example #2
0
 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;
 }
Example #3
0
 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();
        }
Example #5
0
        public SelectFlights(ISupplierAgencyServices _supplierAgencyServices, IBookingServices _bookingServices)
        {
            this.supplierAgencyServices = _supplierAgencyServices;
            this.bookingServices        = _bookingServices;
            var apiClient = new ApiClient();

            partnerClient = new PartnerClient(apiClient);
        }
Example #6
0
        public IssueTicket(ISupplierAgencyServices _supplierAgencyServices, IBookingServices _bookingServices)
        {
            this.supplierAgencyServices = _supplierAgencyServices;
            this.bookingServices        = _bookingServices;
            var apiClient = new ApiClient();

            partnerClient = new PartnerClient(apiClient);
        }
Example #7
0
        public GetTripDetails(ISupplierAgencyServices _supplierAgencyServices, IBookingServices _bookingServices)
        {
            this.supplierAgencyServices = _supplierAgencyServices;
            this.bookingServices        = _bookingServices;
            var apiClient = new ApiClient();

            partnerClient = new PartnerClient(apiClient);
        }
Example #8
0
 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;
 }
Example #11
0
 public BookingController(IBookingServices services)
 {
     bookingServices = services;
 }
Example #12
0
 public BookingController(dbwebContext context, IBookingServices iBookingService)
 {
     ctx      = context;
     iBooking = iBookingService;
 }
 public DeleteModel(IBookingServices services)
 {
     _services = services;
 }
Example #14
0
 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;
 }
Example #18
0
 public EditModel(IBookingServices services, IMakinaServices makinaServices)
 {
     _services       = services;
     _makinaServices = makinaServices;
 }
 public BookingController(IBookingServices bookingService)
 {
     _bookingService = bookingService ?? throw new ArgumentNullException(nameof(bookingService));
 }
Example #20
0
 public BookingController(IBookingServices bookingServices)
 {
     bookingRequest = bookingServices;
 }
Example #21
0
 public BookingController(IBookingServices bookingServices, IRoomServices roomServices)
 {
     _bookingServices = bookingServices;
     _roomServices    = roomServices;
 }