Пример #1
0
 public NutrientBusinessLogic(INutrientRepository nutrientRepository)
 {
     this.nutrientRepository = nutrientRepository;
 }
 public UserIngredientBusinessLogic(IUserIngredientRepository userIngredientRepository, IIngredientRepository ingredientRepository, INutrientRepository nutrientRepository)
 {
     this.userIngredientRepository = userIngredientRepository;
     this.ingredientRepository = ingredientRepository;
     this.nutrientRepository = nutrientRepository;
 }