public SqlDataAdapter StatsData() { StatisticsDAL s = new StatisticsDAL(); /* calls the DAL method */ SqlDataAdapter rd = s.GetStats(); return(rd); }
public string[] GetWebStatistics() { statisticsdal = new StatisticsDAL(); return(statisticsdal.GetWebStatistics()); }
public StatisticsSL(StatisticsDAL statisticsDal) { _statisticsDal = statisticsDal; }
public ServantDetailSL(StatisticsDAL detailDal) { _detailDal = detailDal; }