Ejemplo n.º 1
0
        public static long SaveSupplierPaymentDetails(CLayer.SupplierPayment data)
        {
            DataLayer.SupplierPayment user = new DataLayer.SupplierPayment();

            return(user.SaveSupplierPaymentDetails(data));
        }
Ejemplo n.º 2
0
 public static List <CLayer.SupplierPayment> GetAllSupllierPaymentVoucher(long SupplierPaymentId)
 {
     DataLayer.SupplierPayment user = new DataLayer.SupplierPayment();
     return(user.GetAllSupllierPaymentVoucher(SupplierPaymentId));
 }
Ejemplo n.º 3
0
 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));
 }
Ejemplo n.º 4
0
 public static CLayer.SupplierPayment GetPaymentdetails(string refID)
 {
     DataLayer.SupplierPayment user = new DataLayer.SupplierPayment();
     return(user.GetPaymentdetails(refID));
 }