コード例 #1
0
 public bool DropStudent(int rollno)
 {
     return(sDao.DropStudent(rollno));
 }
コード例 #2
0
ファイル: Class1.cs プロジェクト: GurramVyshnavi/Sample
 public bool DropStudent(int id)
 {
     return(sDao.DropStudent(id));
 }
コード例 #3
0
ファイル: StudentBL.cs プロジェクト: DebosmitaCH/SMS
 public bool DropStudent(Student s1)
 {
     return(sDao.DropStudent(s1));
 }