public async Task <IActionResult> DeletePhotographer(int id)
        {
            Logger.Log(LogLevel.Information, "DELETE: Photographer with id %i", new { id });
            await _picDb.RemovePhotographer(id);

            return(Ok());
        }