Ejemplo n.º 1
0
        public DatabaseChangeToken(IServiceProvider serviceProvider, string path)
        {
            var pageService = serviceProvider.GetRequiredService <ILongRepository <Page> >();

            _pageContext = pageService;
            _path        = path;
        }
Ejemplo n.º 2
0
        public DatabaseDirectoryContent(IServiceProvider serviceProvider, string relativePath)
        {
            _serviceProvider = serviceProvider;
            var pageService = serviceProvider.GetRequiredService <ILongRepository <Page> >();

            _pageContext  = pageService;
            _relativePath = relativePath;
        }
Ejemplo n.º 3
0
        public DatabaseFileInfo(IServiceProvider serviceProvider, string path)
        {
            var pageService = serviceProvider.GetRequiredService <ILongRepository <Page> >();

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