Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 5
0
 public static string getNewAptitudeTime()
 {
     return(UserAptitudePro.getAptitudeTime());
 }
Exemplo n.º 6
0
 public static DataTable getNewFile(string id)
 {
     return(UserAptitudePro.getFile(id));
 }
Exemplo n.º 7
0
 public static UserAptitude getNewUpdateUserAptitude(string id)
 {
     return(UserAptitudePro.getUpdateUserAptitude(id));
 }
Exemplo n.º 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));
 }
Exemplo n.º 9
0
 public static UIDataTable getNewUserGrid(int a_intPageSize, int a_intPageIndex, string where)
 {
     return(UserAptitudePro.getUserGrid(a_intPageSize, a_intPageIndex, where));
 }