public NutrientRecommendationBusinessLogic(INutrientBusinessLogic nutrientBusinessLogic, INutrientRecommendationRepository nutrientRecommendationRepository)
 {
     this.nutrientBusinessLogic = nutrientBusinessLogic;
     this.nutrientRecommendationRepository = nutrientRecommendationRepository;
 }
Beispiel #2
0
 public void Import(INutrientRecommendationRepository nutrientRecommendationRepository)
 {
     nutrientRecommendationRepository.Save(getNutrientRecommendation());
 }