9 lines
229 B
C#
9 lines
229 B
C#
using OAService.Service.Servizi.Interfacce;
|
|
using StandManager.Domain.Entita;
|
|
|
|
namespace StandManager.Service.Interfaces;
|
|
|
|
public interface IMailQueueService : ITService<MailQueue>
|
|
{
|
|
Task<MailQueue> Salva(MailQueue entity);
|
|
} |