public void OnGet() { Quotes = _context.GetQuotes(); }
private bool QuotesExists(int id) { return(repository.GetQuotes().Any(x => x.Id == id)); }