제공하는 서비스 (클라이언트는 이것들을 이용함)
~cpp
[WebMethod(Description="앨리스 가맹점 인증")]
public bool CertifyStore(string storeReg, string storeAuth) // -인자: 사업자 등록 번호, 가맹점 비밀 번호
[WebMethod(Description="포인트 조회")]
public int ReferPoint(string cardNum, string cardPwd) // -인자: 카드 번호 -결과: 포인트
[WebMethod(Description="포인트 적립")]
public bool SavePoint(string storeReg, string storeAuth, string cardNum, string cardPwd, int money, int point) // -인자: 사업자 등록 번호, 카드 번호, 돈, 적립할 포인트
[WebMethod(Description="포인트 사용")]
public bool UsePoint(string storeReg, string storeAuth, string cardNum, string cardPwd, int money, int point) // -인자: 사업자 등록 번호, 카드 번호, 돈, 사용한 포인트