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