public async Task <ActionResult> DeleteCertificateAuthority(string id) { var result = await CertifyClient.DeleteCertificateAuthority(id); if (result.IsSuccess) { await this.RefreshCertificateAuthorityList(); } return(result); }