Esempio n. 1
0
 public ShoppingListCommunicationService(IApiClient apiClient, ICommandQueue commandQueue,
                                         IShoppingListNotificationService notificationService)
 {
     this.apiClient           = apiClient;
     this.commandQueue        = commandQueue;
     this.notificationService = notificationService;
 }
Esempio n. 2
0
 public ErrorHandler(bool isDebug,
                     Func <Action, string, RenderFragment> createRenderFragment,
                     Func <Func <Task>, string, RenderFragment> createAsyncRenderFragment,
                     IShoppingListNotificationService notificationService)
 {
     IsDebug = isDebug;
     this.createRenderFragment      = createRenderFragment;
     this.createAsyncRenderFragment = createAsyncRenderFragment;
     this.notificationService       = notificationService;
 }
 public StoresPageCommunicationService(IApiClient apiClient, IShoppingListNotificationService notificationService)
 {
     this.apiClient           = apiClient;
     this.notificationService = notificationService;
 }
Esempio n. 4
0
 public ItemsPageLoadingService(IApiClient apiClient, IShoppingListNotificationService notificationService)
 {
     this.apiClient           = apiClient;
     this.notificationService = notificationService;
 }
Esempio n. 5
0
 public ShoppingListsController(ShoppingListDbContext db, IShoppingListNotificationService notifications)
 {
     this.db            = db;
     this.notifications = notifications;
 }