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

Get100DaysUserIngredients() private method

private Get100DaysUserIngredients ( User user ) : CarbonFitness.Data.Model.UserIngredient[]
user CarbonFitness.Data.Model.User
return CarbonFitness.Data.Model.UserIngredient[]
        private UserIngredient[] Get100DaysUserIngredients(User user)
        {
            var now = DateTime.Now.Date;
            return userIngredientRepository.GetUserIngredientsByUser(user.Id, now.AddDays(-100), now.AddDays(1));
        }