Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created February 25, 2020 03:10
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/a64690e534d97e363f6f62dcc37434b1 to your computer and use it in GitHub Desktop.
Save carloscds/a64690e534d97e363f6f62dcc37434b1 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace InjecaoDependenciaASPNETCore
{
public interface IServico
{
string RetornaValor();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment