public async Task <IActionResult> GetPhotographer(int id)
 {
     Logger.Log(LogLevel.Information, "GET: Photographer with id %i", new { id });
     return(Ok(await _picDb.GetPhotographerById(id)));
 }