public IActionResult Get(Guid id)
 {
     try
     {
         return(Ok(_useCaseFactory.GetContactUseCase().Execute(id)));
     }
     catch (ContactNotFoundException)
     {
         return(NotFound());
     }
     catch (Exception e)
     {
         return(StatusCode(StatusCodes.Status500InternalServerError, e));
     }
 }