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

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

            this.WorkCenterRepository = repository;
        }
Beispiel #3
0
 public WorkCenterServiceTest(
     IWorkCenterRepository workCenterRepository,
     IWorkCenterJobRepository jobRepo,
     IConfigurationRepository configRepo,
     IAuthService authService
     )
 {
     this.workCenterRepository = workCenterRepository;
     this.jobRepo = jobRepo;
     this.configRepo = configRepo;
     this.authService = authService;
 }
        public WorkCenterController()
        {
            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.WorkCenterRepository = new MixERP.Net.Schemas.Office.Data.WorkCenter
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }
        public WorkCenterController()
        {
            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.WorkCenterRepository = new MixERP.Net.Schemas.Office.Data.WorkCenter
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }