Exemplo n.º 1
0
        public SqlDataAdapter StatsData()
        {
            StatisticsDAL s = new StatisticsDAL();
            /* calls the DAL method */
            SqlDataAdapter rd = s.GetStats();

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