コード例 #1
0
 public static bool AddBeneficiary(Beneficiary beneficairy)
 {
     return(ControllerHandler <Beneficiary> .Insert(beneficairy, Control));
 }
コード例 #2
0
 public static bool AddPyaments(Payment NewPayments)
 {
     return(ControllerHandler <Payment> .Insert(NewPayments, Control));
 }
コード例 #3
0
 public static bool AddCard(Card newcard)
 {
     return(ControllerHandler <Card> .Insert(newcard, Control));
 }
コード例 #4
0
 public static bool registerUser(User newUser)
 {
     return(ControllerHandler <User> .Insert(newUser, Control));
 }
コード例 #5
0
 public static bool AddBenPaymentAcount(PaymentAccount benAcount)
 {
     return(ControllerHandler <PaymentAccount> .Insert(benAcount, Control));
 }
コード例 #6
0
 public static bool AddUserPaymentAcount(PaymentAccount userAcount)
 {
     return(ControllerHandler <PaymentAccount> .Insert(userAcount, Control));
 }
コード例 #7
0
 public static bool AddCrypto(Crypto newcryp)
 {
     return(ControllerHandler <Crypto> .Insert(newcryp, Control));
 }