C# 클래스 Storage.DAO.InvoiceDAO

파일 보기 프로젝트 열기: aokolity/Storage

공개 메소드들

메소드 설명
DeleteInvoice ( int id ) : void
GetInvoice ( int id ) : InvoiceModel
GetInvoiceList ( string type ) : List
GetNextInvoiceNumber ( string type ) : int
SaveInvoice ( InvoiceModel invoiceModel ) : void
UpdateInvoice ( InvoiceModel invoiceModel ) : void

메소드 상세

DeleteInvoice() 공개 정적인 메소드

public static DeleteInvoice ( int id ) : void
id int
리턴 void

GetInvoice() 공개 정적인 메소드

public static GetInvoice ( int id ) : InvoiceModel
id int
리턴 Storage.Models.InvoiceModel

GetInvoiceList() 공개 정적인 메소드

public static GetInvoiceList ( string type ) : List
type string
리턴 List

GetNextInvoiceNumber() 공개 정적인 메소드

public static GetNextInvoiceNumber ( string type ) : int
type string
리턴 int

SaveInvoice() 공개 정적인 메소드

public static SaveInvoice ( InvoiceModel invoiceModel ) : void
invoiceModel Storage.Models.InvoiceModel
리턴 void

UpdateInvoice() 공개 정적인 메소드

public static UpdateInvoice ( InvoiceModel invoiceModel ) : void
invoiceModel Storage.Models.InvoiceModel
리턴 void