コード例 #1
0
 public static bool DeletePyaments(string id)
 {
     return(ControllerHandler <Payment> .Delete(Control + id));
 }
コード例 #2
0
 public static bool DeleteBeneficiary(string beneficairyId)
 {
     return(ControllerHandler <Beneficiary> .Delete(Control + beneficairyId));
 }
コード例 #3
0
 public static bool DeleteCard(string CardNum)
 {
     return(ControllerHandler <Card> .Delete(Control + CardNum));
 }
コード例 #4
0
 public static bool DeleteBenPaymentAcount(string BenAccID)
 {
     return(ControllerHandler <PaymentAccount> .Delete(Control + BenAccID));
 }
コード例 #5
0
 public static bool DeleteUserPaymentAcount(string UserAccID)
 {
     return(ControllerHandler <PaymentAccount> .Delete(Control + UserAccID));
 }
コード例 #6
0
 public static bool DeleteCrypto(string crypid)
 {
     return(ControllerHandler <Crypto> .Delete(Control + crypid));
 }