public async Task <IHttpActionResult> GetStudentsAssociatedWithParent()
        {
            var parent = SecurityPrincipal.Current;
            var model  = await _parentssService.GetStudentsAssociatedWithParentAsync(parent.PersonUSI, parent.PersonUniqueId, parent.PersonTypeId);

            if (model == null)
            {
                return(NotFound());
            }

            return(Ok(model));
        }