public ApiUser Post([FromBody] ApiUser apiUser) { try { apiUser = service.Add(apiUser); } catch (Exception ex) { throw ex; } return(apiUser); }