public InspektionsroutenGISController(IStrassenabschnittGISService strassenabschnittGISService,
                                       IInspektionsRouteGISService inspektionsRouteGISService,
                                       IPackageService packageService,
                                       IInspektionsRouteGISOverviewService inspektionsRouteGISOverviewService,
                                       ISessionService sessionService,
                                       IInspektionsRtStrAbschnitteService inspektionsRtStrAbschnitteService,
                                       IInspektionsRouteStatusverlaufService inspektionsRouteStatusverlaufService,
                                       IInspektionsRouteLockingService inspektionsRouteLockingService,
                                       IEreignisLogService ereignisLogService,
                                       ILocalizationService localizationService,
                                       ICheckInService checkInService,
                                       ICheckOutService checkOutService,
                                       IGeoJSONParseService geoJSONParseService)
     : base(strassenabschnittGISService)
 {
     this.localizationService         = localizationService;
     this.strassenabschnittGISService = strassenabschnittGISService;
     this.inspektionsRouteGISService  = inspektionsRouteGISService;
     this.packageService = packageService;
     this.inspektionsRouteGISOverviewService = inspektionsRouteGISOverviewService;
     this.sessionService = sessionService;
     this.inspektionsRtStrAbschnitteService    = inspektionsRtStrAbschnitteService;
     this.inspektionsRouteStatusverlaufService = inspektionsRouteStatusverlaufService;
     this.inspektionsRouteLockingService       = inspektionsRouteLockingService;
     this.ereignisLogService  = ereignisLogService;
     this.checkInService      = checkInService;
     this.checkOutService     = checkOutService;
     this.geoJSONParseService = geoJSONParseService;
 }
Example #2
0
 public CheckoutController(IAddressService addressService, ICheckOutService checkOutService, ICouponService couponService, IPaypalService paypalService)
 {
     //_addressService = addressService;
     _checkOutService = checkOutService;
     _couponService   = couponService;
     _paypalService   = paypalService;
 }
Example #3
0
 public OrderService(IUnitOfWork uow, AddressService _addressService, CartService _cartService, CheckOutService _checkOutService, IUserService _userService)
 {
     unitOfWork        = uow;
     addressService    = _addressService;
     cartService       = _cartService;
     checkOutService   = _checkOutService;
     this._userService = _userService;
 }
Example #4
0
 public CheckOutsController(
     ICheckOutService checkOutService,
     IUnitOfWorkAsync unitOfWork,
     NLog.ILogger logger
     )
 {
     this.checkOutService = checkOutService;
     this.unitOfWork      = unitOfWork;
     this.logger          = logger;
 }
Example #5
0
 public PrintService(IOrderPayRecordRepository orderPayRecordRepository,
                     ICheckOutRepository checkOutRepository,
                     ICheckOutService checkOutService,
                     ITableRepository tableRepository)
 {
     _orderPayRecordRepository = orderPayRecordRepository;
     _checkOutRepository       = checkOutRepository;
     _checkOutService          = checkOutService;
     _tableRepository          = tableRepository;
 }
 public CheckOutController(IGenericService genericService, IProductService productService, ICheckOutService checkOutService, IPropertyService propertyService, IContentService contentService, IEmailService emailService, ILocationService locationService)
 {
     this._genericService  = genericService;
     this._productService  = productService;
     this._checkOutService = checkOutService;
     this._propertyService = propertyService;
     this._contentService  = contentService;
     this._emailService    = emailService;
     this._locationService = locationService;
 }
Example #7
0
 public WeiXinController(IRestaurantRepository restaurantRepository,
                         IRestaurantService restaurantService, IMarketRepository marketRepository,
                         ICategoryRepository categoryRepository, IRestaurantCategoryRepository restaurantCategoryRepository,
                         IProjectRepository projectRepository, IOrderRepository orderRepository,
                         ITableService tableHandlerSers, IExtendItemRepository extendItemRepository,
                         IPackageRepository packageRepository, ICheckOutService checkOutService, IPayMethodRepository payMethodRepository)
 {
     _restaurantRepository         = restaurantRepository;
     _restaurantService            = restaurantService;
     _marketRepository             = marketRepository;
     _categoryRepository           = categoryRepository;
     _restaurantCategoryRepository = restaurantCategoryRepository;
     _projectRepository            = projectRepository;
     _orderRepository      = orderRepository;
     _tableHandlerSers     = tableHandlerSers;
     _extendItemRepository = extendItemRepository;
     _packageRepository    = packageRepository;
     _checkOutService      = checkOutService;
     _payMethodRepository  = payMethodRepository;
 }
Example #8
0
 public HomeController(
     IEmployeeService employeeService,
     ICheckOutService checkOutService,
     IStockService stockService,
     IBookService bookService,
     ICompanyService companyService,
     NLog.ILogger logger,
     SqlSugar.ISqlSugarClient db,
     IAppCache cache, IMapper mapper)
 {
     this.db              = db;
     this.cache           = cache;
     this.mapper          = mapper;
     this.logger          = logger;
     this.companyService  = companyService;
     this.bookService     = bookService;
     this.stockService    = stockService;
     this.employeeService = employeeService;
     this.checkOutService = checkOutService;
 }
Example #9
0
        private readonly ICustomerRepository _oldCustRepository; //(旧系统)Lxdm 客户表

        public FlatController(IRestaurantRepository restaurantRepository,
                              IRestaurantService restaurantService, IMarketRepository marketRepository,
                              ICategoryRepository categoryRepository, IRestaurantCategoryRepository restaurantCategoryRepository,
                              IProjectRepository projectRepository, IOrderRepository orderRepository,
                              ITableService tableHandlerSers, IExtendItemRepository extendItemRepository,
                              IPackageRepository packageRepository, ICheckOutService checkOutService, IPayMethodRepository payMethodRepository,
                              IAreaRepository areaRepository, IUserService userService, ICustomerRepository customerRepository)
        {
            _restaurantRepository         = restaurantRepository;
            _restaurantService            = restaurantService;
            _marketRepository             = marketRepository;
            _categoryRepository           = categoryRepository;
            _restaurantCategoryRepository = restaurantCategoryRepository;
            _projectRepository            = projectRepository;
            _orderRepository      = orderRepository;
            _tableHandlerSers     = tableHandlerSers;
            _extendItemRepository = extendItemRepository;
            _packageRepository    = packageRepository;
            _checkOutService      = checkOutService;
            _payMethodRepository  = payMethodRepository;
            _areaRepository       = areaRepository;
            _userService          = userService;
            _oldCustRepository    = customerRepository;
        }
Example #10
0
 public CheckOutController(
     ICheckOutRepository checkOutRepository,
     IOrderRepository orderRepository,
     IOrderRecordRepository orderRecordRepository,
     IUserRepository_Old oldUserRepository,
     ICustomerRepository customerRepository,
     ICheckOutService checkOutService,
     IPrintService printService,
     IUserService userService,
     IPayMethodRepository payMethodRepository,
     IPrinterRepository printerRepository
     )
 {
     _checkOutRepository    = checkOutRepository;
     _orderRepository       = orderRepository;
     _orderRecordRepository = orderRecordRepository;
     _oldUserRepository     = oldUserRepository;
     _oldCustRepository     = customerRepository;
     _checkOutService       = checkOutService;
     _printService          = printService;
     _userService           = userService;
     _payMethodRepository   = payMethodRepository;
     _printerRepository     = printerRepository;
 }
Example #11
0
        private readonly ICheckOutService serviceC; //business layer refrence

        public CheckOutController(ICheckOutService service)
        {
            serviceC = service;
        }
Example #12
0
 public CheckOutController(ICheckOutService ICheckOutService)
 {
     _ICheckOutService = ICheckOutService;
 }
Example #13
0
 public CheckOutController(ICheckOutService checkOutService, ICartService cartService)
 {
     _checkOutService = checkOutService;
     _cartService     = cartService;
 }
Example #14
0
 public CartManager(ICheckOutService checkoutService)
 {
     _checkoutService = checkoutService;
 }
Example #15
0
 public AddressController(IAddressService addressService, ICheckOutService checkOutService)
 {
     _addressService  = addressService;
     _checkOutService = checkOutService;
 }
Example #16
0
 public CheckOutServiceUnitTest()
 {
     _checkOutService = CreateCheckOutService();
 }
 public CatalogController(ILibraryAssetService ILibraryAsset, ICheckOutService ICheckOut)
 {
     _ILibraryAsset = ILibraryAsset;
     _ICheckOut     = ICheckOut;
 }