Пример #1
0
 public ProteinsController(IProductsService productsService, IProteinsService proteinsService)
 {
     this.productsService = productsService;
     this.proteinsService = proteinsService;
 }
Пример #2
0
 private void Initialize()
 {
     this.context = KeepFitDbContextInMemoryFactory.Initialize();
     this.mapper  = AutoMapperFactory.Initialize();
     this.service = new ProteinsService(context, mapper);
 }