public StockDetailController(IStockDetailRepository repository, string catalog, LoginView view)
        {
            this._LoginId = view.LoginId.ToLong();
            this._UserId = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog = catalog;

            this.StockDetailRepository = repository;
        }
        public StockDetailController(IStockDetailRepository repository, string catalog, LoginView view)
        {
            this._LoginId  = view.LoginId.ToLong();
            this._UserId   = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog  = catalog;

            this.StockDetailRepository = repository;
        }
        public StockDetailController()
        {
            this._LoginId = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog = AppUsers.GetCurrentUserDB();

            this.StockDetailRepository = new MixERP.Net.Schemas.Transactions.Data.StockDetail
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }
        public StockDetailController()
        {
            this._LoginId  = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId   = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog  = AppUsers.GetCurrentUserDB();

            this.StockDetailRepository = new MixERP.Net.Schemas.Transactions.Data.StockDetail
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
 public StockManagementService(IMapper mapper, IStockDetailRepository repository, IEventBus evenBus)
 {
     _mapper     = mapper;
     _evenBus    = evenBus;
     _repository = repository;
 }
Example #6
0
 public StockDetailService(IStockDetailRepository stockDetailRepository)
 {
     this.stockDetailRepository = stockDetailRepository;
 }