public async Task <IActionResult> GetById(int id)
 {
     return(ActionResultInstance(await _userService.GetByIdAsync(id)));
 }