Exemplo n.º 1
0
 public bool AddChildWithChosenGroup(Child child, Group group)
 {
     if (child == null || group == null)
     {
         return(false);
     }
     _groupService.AddChildToGroup(child, group);
     return(true);
 }