Created
March 17, 2017 10:13
-
-
Save otaviolarrosa/88e8b4ccc47d6e6e936c95ea3fb3b8f5 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 Patterns.AbstractFactory.Interfaces; | |
namespace Patterns.AbstractFactory.Faturamentos | |
{ | |
public class Faturamento641 : IFaturamentoIndividual | |
{ | |
public string GerarFaturasIndividual() | |
{ | |
return "Fatura gerada para a empresa Bom Negócio Ltda."; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment