示例#1
0
        public SqlDataAdapter StatsData()
        {
            StatisticsDAL s = new StatisticsDAL();
            /* calls the DAL method */
            SqlDataAdapter rd = s.GetStats();

            return(rd);
        }
示例#2
0
 public string[] GetWebStatistics()
 {
     statisticsdal = new StatisticsDAL();
     return(statisticsdal.GetWebStatistics());
 }
示例#3
0
 public StatisticsSL(StatisticsDAL statisticsDal)
 {
     _statisticsDal = statisticsDal;
 }
示例#4
0
 public ServantDetailSL(StatisticsDAL detailDal)
 {
     _detailDal = detailDal;
 }