Bll MqService

This commit is contained in:
Mikhail Trubnikov
2023-09-21 09:37:36 +10:00
parent d50cb20c95
commit 096a990669
11 changed files with 109 additions and 38 deletions

View File

@@ -0,0 +1,10 @@
using PARR.BLL.Contracts.Interfaces;
using PARR.BLL.Domain.Mq;
namespace PARR.BLL.Services.Interfaces
{
public interface IMqService
{
MqSendResult Send(IMqSettings mqSettings, string[] msgList);
}
}