Exemplo n.º 1
0
 public static ObjectResult ADSNotFound(this ControllerBase services, string mesagge, object data)
 {
     return(services.ADSNotFound(mesagge, data, 404));
 }
Exemplo n.º 2
0
 public static ObjectResult ADSNotFound(this ControllerBase services, string mesagge)
 {
     return(services.ADSNotFound(mesagge, null));
 }
Exemplo n.º 3
0
 public static NotFoundObjectResult ADSNotFound(this ControllerBase services, String mesagge)
 {
     return(services.ADSNotFound(mesagge, 404));
 }
Exemplo n.º 4
0
 public static ObjectResult ADSNotFound(this ControllerBase services)
 {
     return(services.ADSNotFound(ResponseMessages.NOT_FOUND));
 }
Exemplo n.º 5
0
 public static NotFoundObjectResult ADSNotFound(this ControllerBase services)
 {
     return(services.ADSNotFound(RequestMessages.NOT_FOUND, 404));
 }