Example #1
0
        public async Task <bool> Delete(object id)
        {
            var model = _repoAuditType.FindById(id);

            _repoAuditType.Remove(model);
            return(await _repoAuditType.SaveAll());
        }