Beispiel #1
0
 public static bool UpdateNewLendAptitude(UCertificatLend Lend, ref string a_strErr)
 {
     if (UserAptitudePro.UpdateLendAptitude(Lend, ref a_strErr) >= 2)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Beispiel #2
0
 public static bool deleteNewFile(string id, ref string a_strErr)
 {
     if (UserAptitudePro.deleteFile(id, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Beispiel #3
0
 public static bool UpdateNewUserAptitude(string ID, UserAptitude Uap, byte[] fileByte, ref string a_strErr)
 {
     if (UserAptitudePro.UpdateUserAptitude(ID, Uap, fileByte, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Beispiel #4
0
 public static bool InsertNewUserAptitude(UserAptitude Uaptitude, byte[] fileByte, ref string a_strErr)
 {
     if (UserAptitudePro.InsertUserAptitude(Uaptitude, fileByte, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Beispiel #5
0
 public static string getNewAptitudeTime()
 {
     return(UserAptitudePro.getAptitudeTime());
 }
Beispiel #6
0
 public static DataTable getNewFile(string id)
 {
     return(UserAptitudePro.getFile(id));
 }
Beispiel #7
0
 public static UserAptitude getNewUpdateUserAptitude(string id)
 {
     return(UserAptitudePro.getUpdateUserAptitude(id));
 }
Beispiel #8
0
 public static UIDataTable getNewAptitudeGrid(int a_intPageSize, int a_intPageIndex, string where, string unitid)
 {
     return(UserAptitudePro.getAptitudeGrid(a_intPageSize, a_intPageIndex, where, unitid));
 }
Beispiel #9
0
 public static UIDataTable getNewUserGrid(int a_intPageSize, int a_intPageIndex, string where)
 {
     return(UserAptitudePro.getUserGrid(a_intPageSize, a_intPageIndex, where));
 }