Exemplo n.º 1
0
        public async Task <Child> AddChild(Child child)
        {
            // Add new interest to the db
            List <Interest> interestList = familyRepository.AddNewInterest(child.ChildInterests);

            return(familyRepository.AddChildFinal(child, interestList));
        }