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