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

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

            this.StoreTypeRepository = repository;
        }
 public StoreTypeController(IStoreTypeRepository storeTypeRepository,
                            ILogger <StoreTypeController> logger,
                            IMediator mediator,
                            IMapper mapper,
                            IImsQueries queries)
 {
     _storeTypeRepository = storeTypeRepository;
     _logger   = logger;
     _mediator = mediator;
     _mapper   = mapper;
     _queries  = queries;
 }
        public StoreTypeController()
        {
            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.StoreTypeRepository = new MixERP.Net.Schemas.Office.Data.StoreType
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
        public StoreTypeController()
        {
            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.StoreTypeRepository = new MixERP.Net.Schemas.Office.Data.StoreType
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }