public static long SaveSupplierPaymentDetails(CLayer.SupplierPayment data)
        {
            DataLayer.SupplierPayment user = new DataLayer.SupplierPayment();

            return(user.SaveSupplierPaymentDetails(data));
        }
 public static List <CLayer.SupplierPayment> GetAllSupllierPaymentVoucher(long SupplierPaymentId)
 {
     DataLayer.SupplierPayment user = new DataLayer.SupplierPayment();
     return(user.GetAllSupllierPaymentVoucher(SupplierPaymentId));
 }
 public static List <CLayer.SupplierPayment> GetAllSupllierPaymentSearch(int status, string searchString, int searchItem, int userType, int start, int limit)
 {
     DataLayer.SupplierPayment user = new DataLayer.SupplierPayment();
     return(user.GetAllSupllierPaymentSearch(status, searchString, searchItem, userType, start, limit));
 }
 public static CLayer.SupplierPayment GetPaymentdetails(string refID)
 {
     DataLayer.SupplierPayment user = new DataLayer.SupplierPayment();
     return(user.GetPaymentdetails(refID));
 }