C# 클래스 CustomerDAO.DAO

파일 보기 프로젝트 열기: nzhul/TelerikAcademy

공개 메소드들

메소드 설명
AddCustomer ( string customerID, string companyName ) : void
DeleteCustomer ( string customerID ) : void
UpdateCustomer ( string customerID, string newCompanyName ) : void

비공개 메소드들

메소드 설명
FindCustomerById ( string customerID ) : Customer

메소드 상세

AddCustomer() 공개 정적인 메소드

public static AddCustomer ( string customerID, string companyName ) : void
customerID string
companyName string
리턴 void

DeleteCustomer() 공개 정적인 메소드

public static DeleteCustomer ( string customerID ) : void
customerID string
리턴 void

UpdateCustomer() 공개 정적인 메소드

public static UpdateCustomer ( string customerID, string newCompanyName ) : void
customerID string
newCompanyName string
리턴 void