19 lines
572 B
C#

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<User> ,ILogService
{
public string GetMessage()
{
return AppSettings.Current.AppName;
}
}
}