using RIZO_Application.Infrastructure.CustomAttribute; using RIZO_Application.Infrastructure.Model; using RIZO_Application.Models; using RIZO_Application.Modules.LogModule.Services.Interfaces; using RIZO_Application.Repository; namespace RIZO_Application.Modules.LogModule.Services { [AppService(ServiceType = typeof(ILogService), Lifetime = ServiceLifetime.Transient)] public class LogService : BaseRepository ,ILogService { public string GetMessage() { return AppSettings.Current.AppName; } } }