예제 #1
0
파일: RestController.cs 프로젝트: wwwK/Apsk
 public RestResult Failure(string errorCode = "", string errorMsg = "")
 {
     return(RestResult.Error(errorCode, errorMsg));
 }
예제 #2
0
파일: RestController.cs 프로젝트: wwwK/Apsk
 public RestResult Failure()
 {
     return(RestResult.Error());
 }