Last active
March 17, 2017 10:12
-
-
Save otaviolarrosa/91b5c54c1abd511aea990ade52ad6bab 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 diversos Clientes. | |
/// </summary> | |
public interface IFaturamentoLote | |
{ | |
String GerarFaturasLote(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment