public async Task <AjaxResult> GetAuditEntryListByAuditEntryIdAsync(string id) { ObjectId.TryParse(id, out ObjectId objid); return((await _auditStore.GetAuditEntryListByAuditEntryIdAsync(objid)).ToAjaxResult()); }
public async Task <AjaxResult> GetAuditEntryListByAuditEntryIdAsync(string id) { var objectId = id.AsTo <ObjectId>(); return((await _auditStore.GetAuditEntryListByAuditEntryIdAsync(objectId)).ToAjaxResult()); }
public async Task <AjaxResult> GetAuditEntryListByAuditEntryIdAsync(Guid?id) { return((await _auditStore.GetAuditEntryListByAuditEntryIdAsync(id.Value)).ToAjaxResult()); }