public ManufacturingService(IStaticDataService staticService, IApiService apiService, IBlueprintRepository blueprintRepository, IToDoListRepository todoRepository)
 {
     _staticService = staticService;
     _apiService = apiService;
     _blueprintRepository = blueprintRepository;
     _todoRepository = todoRepository;
 }
示例#2
0
 public Form1(ILocalContext context, IContentTypeRepository contentTypeRepository,
              IDataTypeRepository dataTypeRepository, IBlueprintRepository blueprintRepository)
 {
     _context = context;
     _contentTypeRepository = contentTypeRepository;
     _dataTypeRepository    = dataTypeRepository;
     _blueprintRepository   = blueprintRepository;
     InitializeComponent();
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="store"></param>
 /// <param name="logger"> </param>
 /// <param name="blueprints"> </param>
 public BlueprintAjaxController(IApiKeyStore store, ILogger logger, IBlueprintRepository blueprints)
 {
     _store = store;
     _blueprints = blueprints;
     _logger = logger;
 }
 public BlueprintsController(IBlueprintRepository blueprints)
 {
     _blueprints = blueprints;
 }
 public BlueprintController(IBlueprintRepository blueprints,IUserAuthService authService,ILogger logger)
     : base(authService,logger)
 {
     _blueprints = blueprints;
 }
示例#6
0
 public PriceService(IApiService apiService, IStaticDataService dataService, IBlueprintRepository blueprintRepository)
 {
     _apiService = apiService;
     _dataService = dataService;
     _blueprintRepository = blueprintRepository;
 }
 public BrowserController(IBlueprintRepository blueprints,IBlueprintSearchService search)
 {
     _blueprints = blueprints;
     _search = search;
 }