Exemplo n.º 1
0
        public List <BillName> loadInvoicesSupplierT()
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.loadInvoicesSupplierT());
        }
Exemplo n.º 2
0
        public bool ModifyInvoiceSupplierPostpone(InvoiceSupplier invoice)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.ModifyInvoiceSupplierPostpone(invoice));
        }
Exemplo n.º 3
0
        public InvoiceSupplier loadSupplierById(String idInvoice)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.LoadInvoiceSupplierById(idInvoice));
        }
Exemplo n.º 4
0
        public List <Reminder> LoadSupplierMonthReminder()
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.LoadMonthSupplierReminder());
        }
Exemplo n.º 5
0
        public int verifyInvoiceSupplier(string numberInvoice)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.verifyInvoiceSupplier(numberInvoice));
        }
Exemplo n.º 6
0
        public List <InvoiceSupplier> LoadInvoiceSupplierBydate(DateTime iniDate, DateTime endDate)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.LoadInvoiceSupplierBydate(iniDate, endDate));
        }
Exemplo n.º 7
0
        public List <InvoiceSupplier> LoadInvoiceSupplier(string idSupplier)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.LoadInvoiceSupplier(idSupplier));
        }
Exemplo n.º 8
0
        public Boolean CloseInvoiceSupplier(InvoiceSupplier invS)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.CloseInvoiceSupplier(invS));
        }
Exemplo n.º 9
0
        public Boolean ModifyInvoiceSupplier(InvoiceSupplier invS)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.ModifyInvoiceSupplier(invS));
        }
Exemplo n.º 10
0
        public Boolean InsertInvoiceSupplier(InvoiceSupplier invS)
        {
            DAOInvoiceSupplier daoIS = new DAOInvoiceSupplier();

            return(daoIS.InsertInvoiceSupplier(invS));
        }