Beispiel #1
0
 public void Response <T>(HandleCode actionCode, T model)
 {
     Response((int)actionCode, model, ErrorCode.sys_success);
 }
Beispiel #2
0
 public void Response(HandleCode actionCode, ErrorCode code)
 {
     Response((int)actionCode, string.Empty, code);
 }