19 lines
596 B
C#
19 lines
596 B
C#
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<List<SMTPCredentialVM>> GetAllSmtp(User user, SMTPCredentialVM viewModel);
|
|
Task<List<SMTPCredentialVM>> GetMySmtp(User user, SMTPCredentialVM viewModel);
|
|
Task<SMTPCredentialVM> PostPutSmtp(User user, SMTPCredentialVM viewModel);
|
|
}
|
|
}
|