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> GetMySmtp(SMTPCredentialDto itemDto); Task> GetAllSmtp(SMTPCredentialDto itemDto); Task> GetSMTPCredential(SMTPCredentialDto itemDto); Task PostPutSmtp(SMTPCredentialDto itemDto); Task GetMySmtpById(SMTPCredentialDto itemDto); } }