public async Task <ActionResult <IList <SlipModel> > > GetAllSlips()
 {
     try
     {
         return(Ok(await _db.GetAllSlips()));
     }
     catch (Exception)
     {
         throw;
     }
 }