Beispiel #1
0
 public static void deletePayment(string id)
 {
     PaymentC.DeletePayment(Convert.ToInt32(id));
 }
Beispiel #2
0
 public static List <PaymentE> getPaymentWithNullByUserID(int id)
 {
     return(PaymentC.getPaymentWithNullByUserID(id));
 }
Beispiel #3
0
 public static void updatePayment(PaymentE obj)
 {
     PaymentC.UpdatePayment(obj);
 }
Beispiel #4
0
 public static int insertPayment(PaymentE obj)
 {
     return(PaymentC.InsertPayment(obj));
 }
Beispiel #5
0
 public static PaymentE getPaymentByID(string id)
 {
     return(PaymentC.getPaymentByID(Convert.ToInt32(id)));
 }
Beispiel #6
0
 //Payment
 public static List <PaymentE> getPayments()
 {
     return(PaymentC.selectPayments());
 }