public bool InsertWithdrawal(PureWithdrawal RequestId)
 {
     try
     {
         _db.Insert(RequestId);
         return(true);
     }
     catch (Exception ex)
     {
         return(false);
     }
 }
Exemple #2
0
 public bool InsertWithdrawal(PureWithdrawal UserName)
 {
     //var TillBal = new TransactionManagement().GetTillAccount(TellerId);
     try
     {
         _db.Insert(UserName);
         return(true);
     }
     catch (Exception ex)
     {
         return(false);
     }
 }