コード例 #1
0
ファイル: StatisticsBAL.cs プロジェクト: vigneshm347/PIMS
        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;
 }