public ReportStocksController(IReportStocksAppService reportStocksAppService, ICurrentUser currentUser, IDateTime date, IGcErpConnectionService erpConnectionService)
 {
     _reportStocksAppService = reportStocksAppService;
     _currentUser            = currentUser;
     _erpConnectionService   = erpConnectionService;
     _date = date;
 }
 public InRequestsController(IInRequestAppService inRequestService, ICurrentUser currentUser, ICellarAppService cellarService, IGcErpConnectionService erpConnectionService, IUserAppService userAppService)
 {
     _inRequestService     = inRequestService;
     _cellarService        = cellarService;
     _currentUser          = currentUser;
     _erpConnectionService = erpConnectionService;
     _userAppService       = userAppService;
 }
 public AdjustmentsController(IAdjustmentAppService outRequestService, ICurrentUser currentUser, IGcErpConnectionService erpConnectionService)
 {
     _adjustmentsService   = outRequestService;
     _currentUser          = currentUser;
     _erpConnectionService = erpConnectionService;
 }
Example #4
0
 public HomeController(IUserAppService userService, ICurrentUser currentUser, IGcErpConnectionService erpConnection)
 {
     _userService   = userService;
     _currentUser   = currentUser;
     _erpConnection = erpConnection;
 }