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