public StackDatedDataRepo[] GetEPSAudited() { DAOImpl impl = new DAOImpl(); List <T_EPS_Audited> epsAuditedLst = impl.GetEPSAuditedFromDB(); return(GetDataRepoByEPSAudited(epsAuditedLst)); }
public StackDatedDataRepo[] GetEPS() { DAOImpl impl = new DAOImpl(); List <T_EPS> epsLst = impl.GetEPSFromDB(); return(GetDataRepoByEPS(epsLst)); }
public StackDatedDataRepo[] GetPrice() { DAOImpl impl = new DAOImpl(); List <T_Price> priceLst = impl.GetPriceFromDB(); return(GetDataRepoByPrice(priceLst)); }
private IServicesImpl() { if (dao == null) { dao = new DAOImpl(); } }
public void PopulateFromExcel() { DAOImpl impl = new DAOImpl(); impl.PopulateFromExcel(TableNames.All, 2009, 1, 2017, 3); }