public CanvasActionsController(IBoardItemsRepository boardItemsRepository, IImageService imageService, IApiUsersService apiUsersService, IBoardsRepository boardsRepository, IApiNewsfeedService apiNewsfeedService, IPlatformSettings platformSettings, IApplicationSettings applicationSettings)
 {
     _boardItemsRepository = boardItemsRepository;
     _imageService = imageService;
     _apiUsersService = apiUsersService;
     _boardsRepository = boardsRepository;
     _apiNewsfeedService = apiNewsfeedService;
     _platformSettings = platformSettings;
     _applicationSettings = applicationSettings;
 }
Esempio n. 2
0
 public AuthController(IApiUsersService apiUsers, IConfiguration config)
 {
     _apiUsers = apiUsers;
     _config   = config;
 }
 public CreateCanvasController(IApiProductsService apiProductsService, IApiUsersService apiUsersService, IBoardsRepository boardsRepository)
 {
     _apiProductsService = apiProductsService;
     _apiUsersService = apiUsersService;
     _boardsRepository = boardsRepository;
 }