Esempio n. 1
0
        public static List <CBSource> GetNams()
        {
            var nams = DAL_BCThang.GetNams();

            if (nams == null)
            {
                return(new List <CBSource>());
            }
            return(nams);
        }
Esempio n. 2
0
        public static List <CBSource> GetThangs(int nam)
        {
            var thangs = DAL_BCThang.GetThangs(nam);

            if (thangs == null)
            {
                return(new List <CBSource>());
            }
            return(thangs);
        }
Esempio n. 3
0
 public static DataSet GetDataSet(int thang, int nam)
 {
     return(DAL_BCThang.GetDataSet(thang, nam));
 }