コード例 #1
0
 public Employee_DTO GetObject(int DepartmentID)
 {
     return((Employee_DTO)CBO.FillObject(SqlHelper.ExecuteReader("Employee_GetObject", DepartmentID), typeof(Employee_DTO)));
 }
コード例 #2
0
 public UserExtension_DTO Login(string username, string password)
 {
     return((UserExtension_DTO)CBO.FillObject(SqlHelper.ExecuteReader("User_Login", username, password), typeof(UserExtension_DTO)));
 }
コード例 #3
0
 public GeneralEvent_DTO GetObject(int GeneralEventID)
 {
     return((GeneralEvent_DTO)CBO.FillObject(SqlHelper.ExecuteReader("GeneralEvent_GetObject", GeneralEventID), typeof(GeneralEvent_DTO)));
 }
コード例 #4
0
 public User_DTO GetObject(int UserID)
 {
     return((User_DTO)CBO.FillObject(SqlHelper.ExecuteReader("User_GetObject", UserID), typeof(User_DTO)));
 }
コード例 #5
0
ファイル: Subject_DAL.cs プロジェクト: trucquynh5992/Project
 public Subject_DTO GetObject(int SubjectID)
 {
     return((Subject_DTO)CBO.FillObject(SqlHelper.ExecuteReader("Subject_GetObject", SubjectID), typeof(Subject_DTO)));
 }