コード例 #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
ファイル: PoolAppService.cs プロジェクト: tmlima/lunch
 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;
 }
コード例 #6
0
 public RestaurantController(IRestaurantAppService appService)
 {
     _appService = appService;
 }
コード例 #7
0
 public RestaurantController(IRestaurantAppService service)
 {
     _service = service;
 }