Exemplo n.º 1
0
 public async Task <AjaxResult> GetAuditEntryListByAuditEntryIdAsync(string id)
 {
     ObjectId.TryParse(id, out ObjectId objid);
     return((await _auditStore.GetAuditEntryListByAuditEntryIdAsync(objid)).ToAjaxResult());
 }
Exemplo n.º 2
0
        public async Task <AjaxResult> GetAuditEntryListByAuditEntryIdAsync(string id)
        {
            var objectId = id.AsTo <ObjectId>();

            return((await _auditStore.GetAuditEntryListByAuditEntryIdAsync(objectId)).ToAjaxResult());
        }
Exemplo n.º 3
0
 public async Task <AjaxResult> GetAuditEntryListByAuditEntryIdAsync(Guid?id)
 {
     return((await _auditStore.GetAuditEntryListByAuditEntryIdAsync(id.Value)).ToAjaxResult());
 }