public async Task <IHttpActionResult> GetAllParents() { var collection = await(ParentService.GetAllParent()); if (collection != null) { return(Ok(collection)); } else { return(NotFound()); } }