18 lines
481 B
C#
18 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TIAMWebApp.Shared.Application.Interfaces;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Services
|
|
{
|
|
public class ClientNoticeSenderService : IClientNoticeSenderService
|
|
{
|
|
Task<string> IClientNoticeSenderService.SendNoticeAsync<TNotice>(TNotice message, int messageType)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|