Ejemplo n.º 1
0
        public int DeleteCustomerById(SearchById search)
        {
            CustomerModel cm = new CustomerModel();

            return(cm.deleteCustomer(search.id));
        }
Ejemplo n.º 2
0
        public Customer GetOneCustomerById(SearchById search)
        {
            CustomerModel cm = new CustomerModel();

            return(cm.getOneCustomerById(search.id));
        }
Ejemplo n.º 3
0
        public InstallmentPlanDetail GetOneInstallmentPlanDetailById(SearchById search)
        {
            PaymentPlanModel pm = new PaymentPlanModel();

            return(pm.getPaymentPlanDetail(search.id));
        }
Ejemplo n.º 4
0
        public IEnumerable <Invoice> GetInvoiceListByCustomerID(SearchById search)
        {
            PaymentPlanModel pm = new PaymentPlanModel();

            return(pm.getInvoiceListByCustomerID(search.id));
        }
Ejemplo n.º 5
0
        public PaymentPlanDisplay GetOnePaymentPlanById(SearchById search)
        {
            PaymentPlanModel pm = new PaymentPlanModel();

            return(pm.getOnePaymentPlanById(search.id));
        }