コード例 #1
0
 public static IServiceProvider ServiceProvider(this RxContext context) => context.Get <IServiceProvider>(nameof(ServiceProvider));
コード例 #2
0
 public TokensController(IConfiguration config, RxContext context)
 {
     _config  = config;
     _context = context;
 }
コード例 #3
0
ファイル: UserRepository.cs プロジェクト: rhsin/RX-Data
 public UserRepository(RxContext context)
 {
     _context = context;
 }
コード例 #4
0
 public TransactionsController(RxContext context)
 {
     _context = context;
 }
コード例 #5
0
 public PrescriptionsController(RxContext context)
 {
     _context = context;
 }
コード例 #6
0
ファイル: RxPriceRepository.cs プロジェクト: rhsin/RX-Data
 public RxPriceRepository(RxContext context, IWebScraper webScraper, IConfiguration config)
 {
     _context    = context;
     _webScraper = webScraper;
     _config     = config;
 }
コード例 #7
0
 public PatientsController(RxContext context)
 {
     _context = context;
 }
コード例 #8
0
 public VendorRepository(RxContext context)
 {
     _context = context;
 }