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); }
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); }
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); }
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); }