private void DisplayData(TypeInterval typeInterval)
 {
     EnableAppBarStatus(true);
     // Navigate to the appropriate destination page, configuring the new page
     // by passing required information as a navigation parameter
     frmInterval.Navigate(typeof(IntervalDetailFrame), typeInterval);
 }
Example #2
0
 public AttributeInterval(int?pId, TypeInterval pInterval) :
     base(pId, pInterval)
 {
 }
Example #3
0
 public void Deconstruct(out TypeInterval pInterval)
 {
     pInterval = Interval;
 }
Example #4
0
 public AttributeIntervalBase(int?pId, TypeInterval pInterval) : this(DocConvert.ToInt(pId))
 {
     Interval = pInterval;
 }