Last active
March 17, 2017 10:12
-
-
Save otaviolarrosa/6f27f30922ab613fa41643fff4d08216 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Patterns.AbstractFactory.Interfaces | |
{ | |
/// <summary> | |
/// Interface responsável por assinar o método de geração de faturas para apenas um cliente. | |
/// </summary> | |
public interface IFaturamentoIndividual | |
{ | |
String GerarFaturasIndividual(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment