Example #1
0
 public DataTable get(string id, string pass, string maph)
 {
     if (CheckService.checkID(id, pass) == 1)
     {
         PhongHocService phsv = new PhongHocService();
         return(phsv.get(maph));
     }
     return(null);
 }
Example #2
0
        public DataTable getAllId(string id, string pass)
        {
            if (CheckService.checkID(id, pass) == 1)//kiểm tra id,pass này có đúng không.
            {
                PhongHocService phsv = new PhongHocService();

                return(phsv.getAllId());
            }
            return(null);
        }
Example #3
0
 public int update(string id, string pass, int maphong, int tang, int sophong)
 {
     if (CheckService.checkID(id, pass) == 1)
     {
         if (CheckService.checkRole(id, 2) == 1 || CheckService.checkRole(id, 0) == 1)//kiểm tra id này có quyền insert không...
         {
             PhongHocService phsv = new PhongHocService();
             return(phsv.update(maphong, tang, sophong));
         }
     }
     return(0);
 }
Example #4
0
 public int delete(string id, string pass, string maph) //id và pass của nhân viên không phải id và pass của giảng viên
 {
     if (CheckService.checkID(id, pass) == 1)
     {
         if (CheckService.checkRole(id, 2) == 1 || CheckService.checkRole(id, 0) == 1)//kiểm tra id này có quyền delete giảng viên không...
         {
             PhongHocService phsv = new PhongHocService();
             return(phsv.delete(maph));
         }
     }
     return(0);
 }