Exemplo n.º 1
0
        public string DeleteTemp(string reference, long id)
        {
            var log  = new SysLogModel();
            var json = BinaryUtilities.DeleteTemp();

            log.Finish(json.Length);
            return(json.ToString());
        }
Exemplo n.º 2
0
        public string DeleteTemp(IContext context, string reference, long id)
        {
            var log  = new SysLogModel(context: context);
            var json = BinaryUtilities.DeleteTemp(context: context);

            log.Finish(context: context, responseSize: json.Length);
            return(json.ToString());
        }