Exemple #1
0
 public void OnGet()
 {
     //If the string is Null, it will Get all the guests
     if (String.IsNullOrEmpty(FilterCriteria))
     {
         Guests = guestService.GetGuests();
     }
     else//If the string is not null, it will filter them out
     {
         Guests = guestService.FilterGuestsByAddress(FilterCriteria);
     }
 }