Код: Выделить всё
public class ECUPartHistory
{
public int PartHistID { get; set; }
public string ECUName { get; set; }
public string Sprint { get; set; }
public string ECURelease { get; set; }
public string ECUVariant { get; set; }
public string LUPartNumber { get; set; }
public List Carlines { get; set; }
}
public class Carlines
{
public Nullable CarlineID { get; set; }
public string CarLineName { get; set; }
public Nullable From { get; set; }
public Nullable To { get; set; }
public Nullable ChangeYear { get; set; }
}
Пример формата Excel
Подробнее здесь: https://stackoverflow.com/questions/786 ... cel-report