Esempio n. 1
0
 public int CompareTo(ProductionViewEntity other)
 {
     throw new NotImplementedException();
 }
 private void ShowProductionShifts(ProductionViewEntity viewEntity)
 {
     if (viewEntity == null)
         productionShiftViewEntityBindingSource.DataSource = new ProductionShiftViewEntityBindingList(new List<ProductionShiftViewEntity>());
     else
         productionShiftViewEntityBindingSource.DataSource = new ProductionShiftViewEntityBindingList(viewEntity.Shifts);
 }