Exemplo n.º 1
0
 public NewUserController(IBOUsers IBOUsers, IBOCountry IBOCountry, IHostingEnvironment HostEnvironment, IConfiguration configuration, IMemoryCache memoryCache)
 {
     _IBOUsers        = IBOUsers;
     _IBOCountry      = IBOCountry;
     _HostEnvironment = HostEnvironment;
     _config          = configuration;
     _cache           = memoryCache;
     _mail            = new MailSend(_HostEnvironment, _config);
 }
Exemplo n.º 2
0
 public CountryController(IBOCountry IBOCountry)
 {
     _IBOCountry = IBOCountry;
 }