public WorkEntryRepo() { this._repoUcode = new UserCodeRepo(); this._repoResrc = new ResourceRepo(); this._repoCls = new ClassMasterRepo(); this._repoRule = new CoilBackRuleRepo(); this._repoIn = new StoreInRepo(); }
public PackingOrderRepo() { this._repoUcode = new UserCodeRepo(); this._repoResrc = new ResourceRepo(); this._repoCls = new ClassMasterRepo(); this._repoRule = new CoilBackRuleRepo(); this._repoIn = new StoreInRepo(); this._repoWork = new WorkEntryRepo(); this._repoProd = new ProductionRepo(); }
public InventoryRepo( IInventorySnapshotProcessor snapshotProcessor, IResourceRepo resourceRepo, IFileSystemWrapper fileSystem) : base(fileSystem) { _resourceRepo = resourceRepo; _fileSystem = fileSystem; _inventorySnapshotProcessor = snapshotProcessor; }
public WorkEntryDialog(SessionInfo _session, IEnumerable<PlanningHeadModel> param = null) { InitializeComponent(); this._repo = new WorkEntryRepo(); this._repoRes = new ResourceRepo(); this._repoUcd = new UserCodeRepo(); this._model = param; //this.PatternPara = ""; //this.StorePerPcsPara = ""; //this.RemarkPara = ""; epiSession = _session; }
public ResourcesController(IResourceRepo resources, ITenantRepo tenants, IConfiguration config, ILoggerService logger, IEmailService email, ILeasingDataRepo leasingDatas, IResourceDataFactory resourceDataFactory) { _resources = resources; _tenants = tenants; _config = config; _logger = logger; _email = email; _resourceDataFactory = resourceDataFactory; _leasingDatas = leasingDatas; dateFormat = _config.GetSection("DateFormats").GetSection("Default").Value; }
public MaterialTracker(SessionInfo _session = null, string str = null) { InitializeComponent(); epiSession = _session; _repoWork = new WorkEntryRepo(); _repo = new MaterialFindingRepo(); _repoResrc = new ResourceRepo(); _repoUcode = new UserCodeRepo(); list = new List<MaterialFindingModel>(); possessionList = new List<UserCodeModel>(); resourceList = new List<ResourceModel>(); modelFilter = new MaterialFindingModel(); }
public ProductionSlitter(SessionInfo _session = null, ProductionHeadModel model = null) { InitializeComponent(); epiSession = _session; this._repo = new ProductionRepo(); this._repoPlan = new WorkEntryRepo(); this._repoRes = new ResourceRepo(); this._repoUcd = new UserCodeRepo(); HeaderContent = new ProductionHeadModel(); cuttingList = new Dictionary<int, string>(); pauseFlag = false; if (model != null) { this.HeaderContent = model; } }
public PlanningHeadModel() { _repo = new WorkEntryRepo(); _repoUcd = new UserCodeRepo(); _repoRes = new ResourceRepo(); LevSimulates = new List<LevellerSimulateModel>(); Class = new ClassMasterModel(); CoilBacks = new List<CoilBackModel>(); CoilBackRoles = new List<CoilBackRuleModel>(); CuttingDesign = new List<CutDesignModel>(); Materials = new List<MaterialModel>(); OrderTypeList = new List<UserCodeModel>(); Possessions = new List<UserCodeModel>(); ProcessLine = new ResourceModel(); Resources = new List<ResourceModel>(); }
public WorkEntry(SessionInfo _session = null, PlanningHeadModel model = null) { InitializeComponent(); this._repoRes = new ResourceRepo(); this._repoUcd = new UserCodeRepo(); this._repo = new WorkEntryRepo(); this._reRes = new ResourceRepo(); this._repoSale = new SaleOrderRepo(); this._repoCls = new ClassMasterRepo(); this.HeaderContent = new PlanningHeadModel(); this._class = new ClassMasterModel(); //Initial Session and content this.HeaderContent = new PlanningHeadModel(); epiSession = _session; if (model != null) { this.HeaderContent = model; } }
public CutDesignModel() { this._repo = new WorkEntryRepo(); this._repoUcd = new UserCodeRepo(); this._repoRes = new ResourceRepo(); }
public ProductionPlanRepo() { this._work = new WorkEntryRepo(); this._repoResrc = new ResourceRepo(); }
public ProductionRepo() { this._repoPln = new WorkEntryRepo(); this._repoRes = new ResourceRepo(); this._repoUcd = new UserCodeRepo(); }