CarbonFitness.BusinessLogic.Implementation.UserIngredientBusinessLogic.UserIngredientBusinessLogic C# (CSharp) Method

UserIngredientBusinessLogic() public method

public UserIngredientBusinessLogic ( IUserIngredientRepository userIngredientRepository, IIngredientRepository ingredientRepository, INutrientRepository nutrientRepository ) : System
userIngredientRepository IUserIngredientRepository
ingredientRepository IIngredientRepository
nutrientRepository INutrientRepository
return System
        public UserIngredientBusinessLogic(IUserIngredientRepository userIngredientRepository, IIngredientRepository ingredientRepository, INutrientRepository nutrientRepository)
        {
            this.userIngredientRepository = userIngredientRepository;
            this.ingredientRepository = ingredientRepository;
            this.nutrientRepository = nutrientRepository;
        }