Exemplo n.º 1
0
 public InvoicesController(ApplicationUserManager userManager, ApplicationDbContext dbContext, IInvoiceService invoiceService, IOptions <SlothSettings> slothSettings)
 {
     _userManager    = userManager;
     _dbContext      = dbContext;
     _invoiceService = invoiceService;
     _slothSettings  = slothSettings.Value;
 }
Exemplo n.º 2
0
 public SlothService(IOptions <SlothSettings> settings)
 {
     _settings = settings.Value;
 }