First Commit

This commit is contained in:
Daniel Wathen
2022-11-30 13:15:01 -07:00
commit f996dcfb36
105 changed files with 76792 additions and 0 deletions

View 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;
}
}
}