public async Task <IActionResult> GetById(string id) { Person person = await m_PersonBusiness.Get(id); return(Json(person)); }
public IActionResult GetAll() { return(Ok(_personBusiness.Get())); }