public IActionResult Delete(int id) { try { _debtsService.Delete(id); return(Ok()); } catch (NotFoundException) { return(NotFound()); } catch (ForbiddenException) { return(Forbid()); } }