Ejemplo n.º 1
0
 public int UpdateUserAccountDetails(UserAccountBo objUserAccount, int UserId)
 {
     try
     {
         return(objDAL.UpdateUserAccountDetails(objUserAccount, UserId));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
 public int InsertUserAccountDetails(UserAccountBo objUserAccount)
 {
     try
     {
         return(objDAL.InsertUserAccountDetails(objUserAccount));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 3
0
 public DataTable SelectUsers(UserAccountBo objUserAccount)
 {
     try
     {
         DataTable dt = new DataTable();
         dt = objDAL.SelectUsers(objUserAccount);
         return(dt);
     }
     catch (Exception)
     {
         throw;
     }
 }