Exemplo n.º 1
0
 public ProteinsController(IProductsService productsService, IProteinsService proteinsService)
 {
     this.productsService = productsService;
     this.proteinsService = proteinsService;
 }
Exemplo n.º 2
0
 private void Initialize()
 {
     this.context = KeepFitDbContextInMemoryFactory.Initialize();
     this.mapper  = AutoMapperFactory.Initialize();
     this.service = new ProteinsService(context, mapper);
 }