Beispiel #1
0
        public async Task AddCustomDayAsync(Guid userId, DateTime day, int calories)
        {
            User user = await _userRepository.GetAsync(userId);

            if (user == null || user.Plan == null)
            {
                return;
            }
            await _planRepository.AddCustomDay(CustomDay.Create(user.Plan.PlanId, day, calories));
        }