Created
March 17, 2017 10:14
-
-
Save otaviolarrosa/b349eb595ea13e0c4f6d0e1bce7326b0 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; | |
using Patterns.AbstractFactory.Interfaces; | |
namespace Patterns.AbstractFactory.Faturamentos | |
{ | |
public class Faturamento920 : IFaturamentoLote | |
{ | |
public String GerarFaturasLote() | |
{ | |
return "Faturas geradas com sucesso para 500 clientes."; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment