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

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

            _source = _current = initDate;
        }
Exemplo n.º 4
0
        public dot_Fixer(IDot_mainValues parent)
            : base(parent)
        {
            _aspect = parent.aspect;
            _status = e_dot_Fixed.Free;

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

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