NonInventPurchasingSystem/CPRNIMS.Domain/Contracts/SMTP/ISMTP.cs
2026-01-20 07:44:30 +08:00

20 lines
654 B
C#

using CPRNIMS.Infrastructure.Dto.SMTP;
using CPRNIMS.Infrastructure.Entities.SMTP;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Domain.Contracts.SMTP
{
public interface ISMTP
{
Task<List<SMTPCredential>> GetMySmtp(SMTPCredentialDto itemDto);
Task<List<SMTPCredential>> GetAllSmtp(SMTPCredentialDto itemDto);
Task<List<SMTPCredential>> GetSMTPCredential(SMTPCredentialDto itemDto);
Task<SMTPCredential> PostPutSmtp(SMTPCredentialDto itemDto);
Task<SMTPCredential> GetMySmtpById(SMTPCredentialDto itemDto);
}
}