Beispiel #1
0
        public StackDatedDataRepo[] GetEPSAudited()
        {
            DAOImpl impl = new DAOImpl();
            List <T_EPS_Audited> epsAuditedLst = impl.GetEPSAuditedFromDB();

            return(GetDataRepoByEPSAudited(epsAuditedLst));
        }
Beispiel #2
0
        public StackDatedDataRepo[] GetEPS()
        {
            DAOImpl      impl   = new DAOImpl();
            List <T_EPS> epsLst = impl.GetEPSFromDB();

            return(GetDataRepoByEPS(epsLst));
        }
Beispiel #3
0
        public StackDatedDataRepo[] GetPrice()
        {
            DAOImpl        impl     = new DAOImpl();
            List <T_Price> priceLst = impl.GetPriceFromDB();

            return(GetDataRepoByPrice(priceLst));
        }
 private IServicesImpl()
 {
     if (dao == null)
     {
         dao = new DAOImpl();
     }
 }
Beispiel #5
0
        public void PopulateFromExcel()
        {
            DAOImpl impl = new DAOImpl();

            impl.PopulateFromExcel(TableNames.All, 2009, 1, 2017, 3);
        }