Example #1
0
 public HubResponse GetPersonDetails(int personId) => Invoker(MainHubDAO.GetPersonDetails(personId), "GetPersonDetailsResponse");
Example #2
0
 public HubResponse GetAllPeople(string type) => Invoker(MainHubDAO.GetAllPeople(type), "GetAllPeopleResponse");
Example #3
0
 public HubResponse SearchForPersonById(int personId) => Invoker(MainHubDAO.SearchForPersonById(personId), "SearchForPersonByIdResponse");
Example #4
0
 public HubResponse SearchForPerson(string searchTerm, string personType) => Invoker(MainHubDAO.SearchForPerson(searchTerm, personType), "SearchForPersonResponse");
Example #5
0
 public HubResponse SavePerson(Person person) => Invoker(MainHubDAO.SavePerson(person), "SavePersonResponse");
Example #6
0
 public HubResponse GetView(string path, object model) => Invoker(MainHubDAO.GetView(path, model), "GetViewResponse");