Exemplo n.º 1
0
 public static IServiceProvider ServiceProvider(this RxContext context) => context.Get <IServiceProvider>(nameof(ServiceProvider));
Exemplo n.º 2
0
 public TokensController(IConfiguration config, RxContext context)
 {
     _config  = config;
     _context = context;
 }
Exemplo n.º 3
0
 public UserRepository(RxContext context)
 {
     _context = context;
 }
 public TransactionsController(RxContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public PrescriptionsController(RxContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public RxPriceRepository(RxContext context, IWebScraper webScraper, IConfiguration config)
 {
     _context    = context;
     _webScraper = webScraper;
     _config     = config;
 }
 public PatientsController(RxContext context)
 {
     _context = context;
 }
Exemplo n.º 8
0
 public VendorRepository(RxContext context)
 {
     _context = context;
 }