using CPRNIMS.Infrastructure.Models.Account; using CPRNIMS.Infrastructure.ViewModel.PR; using CPRNIMS.Infrastructure.ViewModel.SMTP; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Domain.UIContracts.SMTP { public interface ISMTP { Task> GetAllSmtp(User user, SMTPCredentialVM viewModel); Task> GetMySmtp(User user, SMTPCredentialVM viewModel); Task PostPutSmtp(User user, SMTPCredentialVM viewModel); } }