Пример #1
0
        public MainPageViewModel(IRestaurantAppService restaurantAppService, ICustomNavigation navigationService)
        {
            this._restaurantAppService = restaurantAppService;
            this._navigationService    = navigationService;

            LoadData();
        }
Пример #2
0
 public RestaurantController(
     IRestaurantAppService restaurantAppService,
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator) : base(notifications, mediator)
 {
     _restaurantAppService = restaurantAppService;
 }
Пример #3
0
 public RestaurantController(IRestaurantAppService restaurantAppService)
 {
     _restaurantAppService = restaurantAppService;
 }
Пример #4
0
 public PoolAppService(IRestaurantAppService restaurantAppService, IUserAppService userAppService)
 {
     this.restaurantAppService = restaurantAppService;
     this.userAppService       = userAppService;
 }
Пример #5
0
 public CreateReviewViewModel(ICustomNavigation navigationService, IRestaurantAppService restaurantAppService)
 {
     this._navigationService    = navigationService;
     this._restaurantAppService = restaurantAppService;
 }
 public RestaurantController(IRestaurantAppService appService)
 {
     _appService = appService;
 }
Пример #7
0
 public RestaurantController(IRestaurantAppService service)
 {
     _service = service;
 }