public InRequestsController(IInRequestAppService inRequestService, ICurrentUser currentUser, ICellarAppService cellarService, IGcErpConnectionService erpConnectionService, IUserAppService userAppService)
 {
     _inRequestService     = inRequestService;
     _cellarService        = cellarService;
     _currentUser          = currentUser;
     _erpConnectionService = erpConnectionService;
     _userAppService       = userAppService;
 }
Пример #2
0
 public CellarController(ICellarAppService cellarService, ICurrentUser currentUser)
 {
     _cellarService = cellarService;
     _currentUser   = currentUser;
 }