Example #1
0
        public AccountMasterController(IAccountMasterRepository repository, string catalog, LoginView view)
        {
            this._LoginId  = view.LoginId.ToLong();
            this._UserId   = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog  = catalog;

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

            this.AccountMasterRepository = repository;
        }
Example #3
0
 public void Dispose()
 {
     _accountCategoryRepository = null;
     _accountGroupRepository    = null;
     _accountMasterRepository   = null;
     _branchRepository          = null;
     _companyRepository         = null;
     _billingsHistoryRepository = null;
     _packageRepository         = null;
     _customerRepository        = null;
 }
Example #4
0
        public AccountMasterController()
        {
            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.AccountMasterRepository = new MixERP.Net.Schemas.Core.Data.AccountMaster
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
        public AccountMasterController()
        {
            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.AccountMasterRepository = new MixERP.Net.Schemas.Core.Data.AccountMaster
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }