Beispiel #1
0
 public InventoryController(
     IWebHostEnvironment environment,
     ILogger <InventoryController> logger,
     SignInManager <UserProfileModel> signInManager,
     UserManager <UserProfileModel> userManager,
     IPostService posts,
     IUserProfileService localProfiles,
     IPublicProfileService publicProfiles,
     ISimpleResourceService resourceService,
     ISimpleInventoryService inventories,
     IReactionService reactions,
     ITagService tags,
     INotificationService notifications,
     IPeerService peers,
     IAuthService auth,
     ISettingsService settings,
     IActivityStreamRepository activityStreams) :
     base(environment, signInManager, userManager, posts, localProfiles, publicProfiles, reactions, tags, notifications, peers, auth, settings, activityStreams)
 {
     _logger      = logger;
     _resources   = resourceService;
     _inventories = inventories;
 }
Beispiel #2
0
 public ElasticSearchInventoryService(ISimpleInventoryService inventories, IHazActivityStreamPipe pipe) : base(pipe)
 {
     _inventories = inventories;
 }