Last active
January 28, 2020 11:50
-
-
Save devsuperman/3e8cdb9daf52086e978ca6a985b2e67f to your computer and use it in GitHub Desktop.
Exemplo de utilização do método de extensão de cultura brasileira
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 Tambaqui.Extensions; | |
... | |
namespace Tambaqui | |
{ | |
public class Startup | |
{ | |
public Startup(IConfiguration configuration) | |
{ | |
Configuration = configuration; | |
} | |
public IConfiguration Configuration { get; } | |
public void ConfigureServices(IServiceCollection services) | |
{ | |
... | |
} | |
public void Configure(IApplicationBuilder app, IHostingEnvironment env) | |
{ | |
app.UsarCulturaBrasileira(); | |
... | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment