public async Task <ActionResult <SlipModel> > DeleteSlip([FromHeader] int id) { try { return(Ok(await _db.DeleteSlip(id))); } catch (Exception) { throw; } }