Beispiel #1
0
        public FormLineDetails(string lineId)
        {
            InitializeComponent();
            _lineService = new LineService();
            _customerService = new CustomerService();
            _processService = new ProcessService();
            _modelService = new ModelService();
            _showResultService = new ShowResultService();
            _shiftService = new ShiftService();


            _line = _lineService.GetLineByName(lineId);
            _lineStatus = _modelService.GetLineStatusByLineAndCustomer(_line.Id_line, _line.Id_customer);
        }
Beispiel #2
0
 private void FormLineDetails_Load(object sender, EventArgs e)
 {
     _line = _lineService.GetLineByName("RM2-8050/51");
     _lineStatus = _modelService.GetLineStatusByLineAndCustomer(_line.Id_line, _line.Id_customer);
     LoadData();
 }