Exemplo n.º 1
0
        public ActionResult <Models.Public.Response.Family> GetFamily()
        {
            var family = _service.GetFamily(getID());

            if (family != null)
            {
                return(family);
            }
            return(NotFound());
        }
Exemplo n.º 2
0
 public void OnGet()
 {
     Family = FamilyService.GetFamily();
 }