示例#1
0
        // insert into supplier
        public int PaySupplier(string PaymentDate, string ChequeNo, decimal PaymentAmount, string Payee, string Memo, int InvoiceNum)
        {
            Ws_Supplier_VotechClient VotechClient;

            VotechClient = new Ws_Supplier_VotechClient();
            return(VotechClient.PaySupplier(PaymentDate, ChequeNo, PaymentAmount, Payee, Memo, InvoiceNum));
        }
示例#2
0
        public DataSet GetAllCustomerOrders()
        {
            Ws_Supplier_VotechClient supplier_votech;

            supplier_votech = new Ws_Supplier_VotechClient();
            return(supplier_votech.GetAllCustomerOrders());
        }
示例#3
0
        public DataSet GetAllOrderItem(string CO_ID)
        {
            Ws_Supplier_VotechClient supplier_votech;

            supplier_votech = new Ws_Supplier_VotechClient();
            return(supplier_votech.GetAllOrderItem(CO_ID));
        }
示例#4
0
        // WEB SERVICE
        public int insertPurchaseOrder(string name, string email, string contact, string address, string date)
        {
            Ws_Supplier_VotechClient VotechClient;

            VotechClient = new Ws_Supplier_VotechClient();
            return(VotechClient.insertPurchaseOrder(name, email, contact, address, date));
        }
        public DataSet getInvoiceOrderItem()
        {
            Ws_Supplier_VotechClient VotechClient;

            VotechClient = new Ws_Supplier_VotechClient();
            return(VotechClient.getallInvoiceOrderItem());
        }
        //view created invoice
        public DAL_CreateInvoice[] GetInvoiceCreated()
        {
            Ws_Supplier_VotechClient VotechClient;

            VotechClient = new Ws_Supplier_VotechClient();
            return(VotechClient.GetInvoiceCreated());
        }
示例#7
0
        public DataSet GetAll_Inventory()
        {
            Ws_Supplier_VotechClient client;

            client = new Ws_Supplier_VotechClient();
            return(client.GetAll_Inventory());
        }
        // Create order items WEB SERVICE
        public int createOrderItems(string ProdName, string ProdDesc, string ProductPrice)
        {
            Ws_Supplier_VotechClient VotechClient;

            VotechClient = new Ws_Supplier_VotechClient();
            return(VotechClient.createOrderItems(ProdName, ProdDesc, ProductPrice));
        }