private static IActionResult OnDomainObjectNotFoundException(DomainObjectNotFoundException ex)
 {
     return(new NotFoundResult());
 }
Ejemplo n.º 2
0
 private static ErrorDto OnDomainObjectNotFoundException(DomainObjectNotFoundException ex)
 {
     return(new ErrorDto {
         StatusCode = 404
     });
 }