17 lines
399 B
C#
17 lines
399 B
C#
using RIZO_Application.Infrastructure.Model;
|
|
using RIZO_Application.Models;
|
|
using RIZO_Application.Repository;
|
|
using RIZO_Application.Services.Interfaces;
|
|
|
|
namespace RIZO_Application.Services
|
|
{
|
|
public class MessageService : BaseRepository<User> ,IMessageService
|
|
{
|
|
public string GetMessage()
|
|
{
|
|
|
|
return AppSettings.Current.AppName;
|
|
}
|
|
}
|
|
}
|