Files
shgxtzcjhoudaosaomadayinwpf/RIZO_Application/Modules/RIZO_Application.Modules.ModuleName/Services/MessageService.cs

19 lines
548 B
C#
Raw Normal View History

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