public bool InsertPaymentType(PaymentTypeDAO paymentType)
 {
     return(data.InsertPaymentType(PaymentTypeMapper.MapToPaymentType(paymentType)));
 }
 public bool ChangePaymentType(PaymentTypeDAO paymentType)
 {
     return(data.ChangePaymentType(PaymentTypeMapper.MapToPaymentType(paymentType)));
 }
 public bool DeletePaymentType(PaymentTypeDAO paymentType)
 {
     return(data.DeletePaymentType(PaymentTypeMapper.MapToPaymentType(paymentType)));
 }