Ejemplo n.º 1
0
        public async Task <LogEntity> LogWarning(string information)
        {
            var log = LogEntity.LogWarning(_location, information);

            return(await _repository.CreateLog(log)
                ? log
                : null);
        }