Ejemplo n.º 1
0
        public void TestGetHistDPLogList()
        {
            EtyHistDataPoint histDP = new EtyHistDataPoint();

            histDP.EntityKey       = 10147653;
            histDP.DPStartDateTime = new DateTime(2013, 5, 10);
            histDP.DPEndDateTime   = new DateTime(2013, 5, 11);

            DateTime startTime = new DateTime(2013, 5, 10, 1, 1, 1);
            DateTime endTime   = new DateTime(2013, 5, 10, 23, 59, 59);

            DataLogDPLogTrendDAO.GetInstance().GetHistDPLogList(histDP, startTime, endTime);
        }
Ejemplo n.º 2
0
 public void TestGetInstance01()
 {
     DataLogDPLogTrendDAO dataLogDPLogTrendDAO = DataLogDPLogTrendDAO.GetInstance();
 }
Ejemplo n.º 3
0
 public void TestReleaseInstance01()
 {
     DataLogDPLogTrendDAO.ReleaseInstance();
 }
Ejemplo n.º 4
0
        public List <EtyDataLogDPLogTrend> GetHistDPLogList(EtyHistDataPoint histDP, DateTime startTime, DateTime endTime)
        {
            DataLogDPLogTrendDAO dao = new DataLogDPLogTrendDAO();

            return(dao.GetHistDPLogList(histDP, startTime, endTime));
        }