Ejemplo n.º 1
0
 public ReportData()
 {
     taxtForm        = new TaxForm();
     dependent       = new List <Dependent>();
     filingStatus    = new FilingStatus();
     taxFormAddress  = new TaxFormAddress();
     taxFormCriteria = new TaxFormCriteria();
     taxFormAddress  = new TaxFormAddress();
     CareProvider    = new DependentCareProviders();
 }
Ejemplo n.º 2
0
        public ReportData(ApplicationDbContext db)
        {
            _db = db;


            taxtForm        = new TaxForm();
            dependent       = new List <Dependent>();
            filingStatus    = new FilingStatus();
            taxFormAddress  = new TaxFormAddress();
            taxFormCriteria = new TaxFormCriteria();
            taxFormAddress  = new TaxFormAddress();
            CareProvider    = new DependentCareProviders();
        }
Ejemplo n.º 3
0
 public ReportData(ApplicationDbContext db, IHttpContextAccessor httpContextAccessor, IWebHostEnvironment env)
 {
     _db = db;
     _httpContextAccessor = httpContextAccessor;
     _env            = env;
     taxtForm        = new TaxForm();
     dependent       = new List <Dependent>();
     filingStatus    = new FilingStatus();
     taxFormAddress  = new TaxFormAddress();
     taxFormCriteria = new TaxFormCriteria();
     taxFormAddress  = new TaxFormAddress();
     CareProvider    = new DependentCareProviders();
 }