Exemple #1
0
 private void SendData()
 {
     if (Review.Score == 0 || string.IsNullOrEmpty(Review.UserName))
     {
         Error = "Gelieve jouw naam en een score in te vullen!";
     }
     else
     {
         _restaurantAppService.AddReview(_restaurant.Id.ToString(), Review);
         _navigationService.GoBack();
     }
 }