Ejemplo n.º 1
0
        public async Task <MsgOutput> DeleteAsync([FromRoute] string id, [FromRoute] byte[] timestamp)
        {
            var key = new KeyStamp <string>(id, timestamp);
            await _sysCompanyService.DeleteAsync(new[] { key });

            return(MsgOutputOption.OkMsg);
        }