using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace InjecaoDependenciaDiretaEF.Services | |
{ | |
public class EnvioEmail : IEnvioEmail | |
{ | |
public string Enviar() => "Email Enviado"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment