Exemplo n.º 1
0
 protected APIBaseResponse BuildAPIErrorResponse(string responseCode)
 {
     return(new APIBaseResponse(false, responseCode, MsgResourceBuilder.GetMessageResource(responseCode)));
 }
Exemplo n.º 2
0
 protected APIBaseResponse BuildAPIErrorResponse(string responseCode, object[] parameters)
 {
     return(new APIBaseResponse(false, responseCode, string.Format(MsgResourceBuilder.GetMessageResource(responseCode), parameters)));
 }
Exemplo n.º 3
0
 public string GetMessage(string resourceID)
 {
     return(MsgResourceBuilder.GetMessageResource(resourceID));
 }