Created
March 17, 2017 10:14
-
-
Save otaviolarrosa/8796755da2ae5bff5848fcdc6c880c55 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 Faturamento921 : IFaturamentoIndividual | |
{ | |
public string GerarFaturasIndividual() | |
{ | |
return "Fatura gerada para o cliente João da Silva."; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment