Exemplo n.º 1
0
 public static bool UpdatePyaments(Payment NewPayments)
 {
     return(ControllerHandler <Payment> .Update(NewPayments, Control));
 }
Exemplo n.º 2
0
 public static bool UpdateCard(Card UpCard)
 {
     return(ControllerHandler <Card> .Update(UpCard, Control));
 }
Exemplo n.º 3
0
 public static bool UpdateBeneficiary(Beneficiary beneficairy)
 {
     return(ControllerHandler <Beneficiary> .Update(beneficairy, Control));
 }
Exemplo n.º 4
0
 public static bool UpdateUser(User newUser)
 {
     return(ControllerHandler <User> .Update(newUser, Control));
 }
 public static bool UpdateBenPaymentAcount(PaymentAccount benAcount)
 {
     benAcount.UserID = null;
     return(ControllerHandler <PaymentAccount> .Update(benAcount, Control));
 }
 public static bool UpdateUserPaymentAcount(PaymentAccount userAcount)
 {
     userAcount.BeneficiaryID = null;
     return(ControllerHandler <PaymentAccount> .Update(userAcount, Control));
 }
 public static bool UpateUserCrypto(Crypto upcryp)
 {
     upcryp.BeneficiaryId = null;
     return(ControllerHandler <Crypto> .Update(upcryp, Control));
 }
 public static bool UpateCrypto(Crypto upcryp)
 {
     upcryp.UserId = null;
     return(ControllerHandler <Crypto> .Update(upcryp, Control));
 }