예제 #1
0
 public void changeAspect(e_dot_aspect Aspect)
 {
     _aspect = Aspect;
     _svc_freeSpaceRecalculate();
     _svc_statusCheck();
     _svc_currentCheck();
 }
예제 #2
0
        public ADot_MainValues()
        {
            _aspect = e_dot_aspect.Dot;
            _stateValue = e_dot_stateValue.Null;
            initDate = new DateTime(1900, 1, 1);

            _source = _current = initDate;
        }
예제 #3
0
        public ADot_MainValues()
        {
            _aspect     = e_dot_aspect.Dot;
            _stateValue = e_dot_stateValue.Null;
            initDate    = new DateTime(1900, 1, 1);

            _source = _current = initDate;
        }
예제 #4
0
        public dot_Fixer(IDot_mainValues parent)
            : base(parent)
        {
            _aspect = parent.aspect;
            _status = e_dot_Fixed.Free;

            _current   = parentDate;
            _freeSpace = 0;
        }
예제 #5
0
 internal bool setAspect(e_dot_aspect Aspect)
 {
     if (Aspect != _aspect)
     {
         _aspect = Aspect;
         return(true);
     }
     return(false);
 }
예제 #6
0
        public dot_Fixer(IDot_mainValues parent)
            : base(parent)
        {
            _aspect = parent.aspect;
            _status = e_dot_Fixed.Free;

            _current = parentDate;
            _freeSpace = 0;
        }
예제 #7
0
 internal bool setAspect(e_dot_aspect Aspect)
 {
     if (Aspect != _aspect)
     {
         _aspect = Aspect;
         return true;
     }
     return false;
 }
예제 #8
0
 public DateTime spotDate(e_dot_aspect dotAspect, DateTime dtBound, DateTime dtDate)
 {
     return inBoundCheck(dotAspect, dtBound, dtDate);
 }
예제 #9
0
 public double getDuration(e_dot_aspect dotAspect, DateTime dtBound, DateTime dtDate)
 {
     return durationCalculate(dotAspect, dtBound, dtDate);
 }
예제 #10
0
 public void changeAspect(e_dot_aspect Aspect)
 {
     _aspect = Aspect;
     _svc_freeSpaceRecalculate();
     _svc_statusCheck();
     _svc_currentCheck();
 }
예제 #11
0
 public double getDuration(e_dot_aspect dotAspect, DateTime dtBound, DateTime dtDate)
 {
     return(durationCalculate(dotAspect, dtBound, dtDate));
 }
예제 #12
0
 public DateTime spotDate(e_dot_aspect dotAspect, DateTime dtBound, DateTime dtDate)
 {
     return(inBoundCheck(dotAspect, dtBound, dtDate));
 }