public static bool DeletePyaments(string id) { return(ControllerHandler <Payment> .Delete(Control + id)); }
public static bool DeleteBeneficiary(string beneficairyId) { return(ControllerHandler <Beneficiary> .Delete(Control + beneficairyId)); }
public static bool DeleteCard(string CardNum) { return(ControllerHandler <Card> .Delete(Control + CardNum)); }
public static bool DeleteBenPaymentAcount(string BenAccID) { return(ControllerHandler <PaymentAccount> .Delete(Control + BenAccID)); }
public static bool DeleteUserPaymentAcount(string UserAccID) { return(ControllerHandler <PaymentAccount> .Delete(Control + UserAccID)); }
public static bool DeleteCrypto(string crypid) { return(ControllerHandler <Crypto> .Delete(Control + crypid)); }