Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created February 28, 2020 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carloscds/046ded779d61c59c972898af046a7fc7 to your computer and use it in GitHub Desktop.
Save carloscds/046ded779d61c59c972898af046a7fc7 to your computer and use it in GitHub Desktop.
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