public List <Patron> GetAllPatrons()
 {
     return(_patronStorage.GetAll());
 }
 public List <Patron> GetAllPatrons(Guid userId)
 {
     return(_patronStorage.GetAll(userId));
 }