Ejemplo n.º 1
0
        public async Task <bool> CreateLog(string type, string description)
        {
            var logToCreate = await _logFactory.CreateLogToCreate(type, description);

            await _context.SaveAsync(logToCreate);

            return(true);
        }