프로젝트

일반

사용자정보

개정판 919dee1b

ID919dee1be3f2021ea0e7c41c2257d1fc2ef33331
상위 c4ce78d9
하위 32e65f42, 4395d001

semi 이(가) 4년 이상 전에 추가함

Merged 완료

차이점 보기:

ConvertService/ServiceController/Markus.Service.StationController/Data/FinalPDF.cs
31 31

  
32 32
        }
33 33

  
34
        public FinalPDF(string convertId, string projectNo, int Status, string documentID, string markupInfoID, string docInfoID, string documentName, string documentNo, string createUserID,//20
35
           string revision, int currentPageNo, int totalPage, string exception, string groupNo, DateTime create_datetime, DateTime? start_datetime, DateTime? end_datetime, string originfilePath,
36
           string convertPath, string markusLink)
34
        public FinalPDF(string convertId, string projectNo, int? Status, string documentID, string markupInfoID, string docInfoID, string documentName, string documentNo, string createUserID,//20
35
           string revision, int? currentPageNo, int? totalPage, string exception, string groupNo, DateTime create_datetime, DateTime? start_datetime, DateTime? end_datetime, string originfilePath,
36
           string convertPath, string markusLink, string user_id="")
37 37
        {
38 38
            DocumentID = documentID;
39 39
            ConvertID = convertId;
......
55 55
            ConvertPath = convertPath;
56 56
            MarkusLink = markusLink;
57 57
            OriginfilePath = originfilePath;
58
            User_ID = user_id;
58 59

  
59 60
            TimeSpan duration = TimeSpan.MinValue;
60 61
            if (EndTime.HasValue)
......
323 324
            }
324 325
        }
325 326

  
326
        private int _TotalPage;
327
        public int TotalPage
327
        private int? _TotalPage;
328
        public int? TotalPage
328 329
        {
329 330
            get
330 331
            {
......
340 341
            }
341 342
        }
342 343

  
343
        private int _CurrentPageNo;
344
        public int CurrentPageNo
344
        private int? _CurrentPageNo;
345
        public int? CurrentPageNo
345 346
        {
346 347
            get
347 348
            {
......
481 482
            }
482 483
        }
483 484

  
485

  
486
        private string _User_ID;
487
        public string User_ID
488
        {
489
            get
490
            {
491
                return _User_ID;
492
            }
493
            set
494
            {
495
                if (_User_ID != value)
496
                {
497
                    _User_ID = value;
498
                    OnPropertyChanged("User_ID");
499
                }
500
            }
501
        }
502

  
503
        private string _Merged;
504
        public string Merged
505
        {
506
            get
507
            {
508
                return _Merged;
509
            }
510
            set
511
            {
512
                if (_Merged != value)
513
                {
514
                    _Merged = value;
515
                    OnPropertyChanged("Merged");
516
                }
517
            }
518
        }
519

  
484 520
        public event PropertyChangedEventHandler PropertyChanged;
485 521
        private void OnPropertyChanged(string propertyName)
486 522
        {

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)