public static bool AddBeneficiary(Beneficiary beneficairy) { return(ControllerHandler <Beneficiary> .Insert(beneficairy, Control)); }
public static bool AddPyaments(Payment NewPayments) { return(ControllerHandler <Payment> .Insert(NewPayments, Control)); }
public static bool AddCard(Card newcard) { return(ControllerHandler <Card> .Insert(newcard, Control)); }
public static bool registerUser(User newUser) { return(ControllerHandler <User> .Insert(newUser, Control)); }
public static bool AddBenPaymentAcount(PaymentAccount benAcount) { return(ControllerHandler <PaymentAccount> .Insert(benAcount, Control)); }
public static bool AddUserPaymentAcount(PaymentAccount userAcount) { return(ControllerHandler <PaymentAccount> .Insert(userAcount, Control)); }
public static bool AddCrypto(Crypto newcryp) { return(ControllerHandler <Crypto> .Insert(newcryp, Control)); }