You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
678 B
C#
28 lines
678 B
C#
using System;
|
|
using System.Data;
|
|
using System.Configuration;
|
|
using DSWeb.Models;
|
|
using DSWeb.EntityDA;
|
|
|
|
namespace DSWeb.Invoice
|
|
{
|
|
public class InvoiceBookManager
|
|
{
|
|
private static InvoiceBookManager invoiceBookManger = new InvoiceBookManager();
|
|
private InvoiceBookManager() { }
|
|
|
|
public static InvoiceBookManager Instance()
|
|
{
|
|
return invoiceBookManger;
|
|
}
|
|
|
|
public InvoiceBookEntity GetCurrentInvoiceBook()
|
|
{
|
|
InvoiceBookDA invoiceBookDA = new InvoiceBookDA();
|
|
InvoiceBookEntity invoiceBookEntity = new InvoiceBookEntity();
|
|
|
|
return invoiceBookEntity;
|
|
}
|
|
}
|
|
}
|