コード例 #1
0
ファイル: BllStudent.cs プロジェクト: dineshhakim/Benneton
 public static string GetRegistrationNo(int Event, int id, string code)
 {
     return(DllStudentInfo.GetRegistrationNo(Event, id, code));
 }
コード例 #2
0
ファイル: BllStudent.cs プロジェクト: dineshhakim/Benneton
 public static string UpdatePharmacist(char Event, string xmlPharmacistList, string xmlSubjectCommittee, out int id)
 {
     id = 0;
     return(DllStudentInfo.UpdatePharmacist(Event, xmlPharmacistList, xmlSubjectCommittee, out id));
 }
コード例 #3
0
ファイル: BllStudent.cs プロジェクト: dineshhakim/Benneton
 public static decimal GetFeeAmount(int Event, int id, string code)
 {
     return(DllStudentInfo.GetFeeAmount(Event, id, code));
 }
コード例 #4
0
ファイル: BllStudent.cs プロジェクト: dineshhakim/Benneton
 public static string GetBillNo(int Event, int id, string code, string voucherno)
 {
     return(DllStudentInfo.GetBillNo(Event, id, code, voucherno));
 }
コード例 #5
0
ファイル: BllStudent.cs プロジェクト: dineshhakim/Benneton
        public static DataTable GetPharmacistsDetailByDate(int Event, int id, string code, string code1, DateTime fromdate, DateTime todate)
        {
            var dt = DllStudentInfo.GetPharmacistsDetailByDate(Event, id, code, code1, fromdate, todate);

            return(dt);
        }
コード例 #6
0
ファイル: BllStudent.cs プロジェクト: dineshhakim/Benneton
        public static DataSet GetPharmacistsDetailsByStudentId(int Event, int id, string code, string code1, string code2)
        {
            var dt = DllStudentInfo.GetPharmacistsDetailsByStudentId(Event, id, code, code1, code2);

            return(dt);
        }
コード例 #7
0
ファイル: BllStudent.cs プロジェクト: dineshhakim/Benneton
 public static string InsUpdDelStudent(char Event, StudentInfo obj, out int id)
 {
     id = 0;
     return(DllStudentInfo.InsUpdDelStudent(Event, obj, out id));
 }