First Commit
This commit is contained in:
20
ReportingServices/ReportingObjects/ScrapByDay.cs
Normal file
20
ReportingServices/ReportingObjects/ScrapByDay.cs
Normal file
@ -0,0 +1,20 @@
|
||||
namespace ReportingServices.ReportingObjects
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user