namespace ReportingServices.Models.ProductionReport { public class ScrapByDay { public string StartDate { get; set; } public int TW_PROD { get; set; } public int TOT_REJ_CUST { get; set; } public int TOT_REJ_MANU { get; set; } public int TOT_REJ_WFRS { get; set; } public ScrapByDay(string startDate, string tw_prod, string tot_rej_cust, string tot_rej_manu) { StartDate = startDate; TW_PROD = int.Parse(tw_prod); TOT_REJ_CUST = int.Parse(tot_rej_cust); TOT_REJ_MANU = int.Parse(tot_rej_manu); TOT_REJ_WFRS = TOT_REJ_CUST + TOT_REJ_MANU; } } }