コード例 #1
0
        public DatabaseChangeToken(IServiceProvider serviceProvider, string path)
        {
            var pageService = serviceProvider.GetRequiredService <ILongRepository <Page> >();

            _pageContext = pageService;
            _path        = path;
        }
コード例 #2
0
        public DatabaseDirectoryContent(IServiceProvider serviceProvider, string relativePath)
        {
            _serviceProvider = serviceProvider;
            var pageService = serviceProvider.GetRequiredService <ILongRepository <Page> >();

            _pageContext  = pageService;
            _relativePath = relativePath;
        }
コード例 #3
0
        public DatabaseFileInfo(IServiceProvider serviceProvider, string path)
        {
            var pageService = serviceProvider.GetRequiredService <ILongRepository <Page> >();

            _pageContext = pageService;
            _viewPath    = path;
            GetView(path);
        }
コード例 #4
0
 public IDS_RWT_Incoming_Arrival_UZ_DocumentController(ILongRepository <Arrival_UZ_Document> ids)
 {
     this.ef_ids = ids;
 }
コード例 #5
0
 public IDS_RWT_WagonInternalOperationController(ILongRepository <WagonInternalOperation> ids)
 {
     this.ef_ids = ids;
 }
コード例 #6
0
 public PageService(ILongRepository <Page> pageContext)
 {
     _pageContext = pageContext;
 }
コード例 #7
0
 public IDS_RWT_Incoming_SAPIncomingSupplyController(ILongRepository <SAPIncomingSupply> ids)
 {
     this.ef_ids = ids;
 }
コード例 #8
0
 public DatabaseFileSystem(ILongRepository <Page> context)
 {
     _context = context;
 }
コード例 #9
0
 public IDS_RWT_Incoming_Arrival_UZ_VagonController(ILongRepository <Arrival_UZ_Vagon> ids)
 {
     this.ef_ids = ids;
 }
コード例 #10
0
 public IDS_RWT_OutgoingSostavController(ILongRepository <OutgoingSostav> ids)
 {
     this.ef_ids = ids;
 }
コード例 #11
0
 public DatabaseChangeToken(ILongRepository <CMSPage> pageContext, string path)
 {
     _pageContext = pageContext;
     _path        = path;
 }
コード例 #12
0
 public DatabaseFileProvider(ILongRepository <CMSPage> context)
 {
     _context = context;
 }
コード例 #13
0
 public IDS_RWT_WagonInternalRoutesController(ILongRepository <WagonInternalRoutes> ids)
 {
     this.ef_ids = ids;
 }
コード例 #14
0
 public IDS_RWT_Incoming_ArrivalCarsController(ILongRepository <ArrivalCars> ids)
 {
     this.ef_ids = ids;
 }
コード例 #15
0
 public IDS_RWT_OutgoingCarsController(ILongRepository <OutgoingCars> ids)
 {
     this.ef_ids = ids;
 }
コード例 #16
0
 public DatabaseFileInfo(ILongRepository <CMSPage> pageContext, string path)
 {
     _pageContext = pageContext;
     GetView(path);
 }
コード例 #17
0
 public DatabaseDirectoryContent(ILongRepository <CMSPage> pageContext, string relativePath)
 {
     _pageContext  = pageContext;
     _relativePath = relativePath;
 }
コード例 #18
0
 public IDS_RWT_WagonInternalMovementController(ILongRepository <WagonInternalMovement> ids)
 {
     this.ef_ids = ids;
 }