using DevExpress.Persistent.Base;
using System;
// ...
public class CurrentMonthParameter : ReadOnlyParameter {
public CurrentMonthParameter() : base("CurrentMonth", typeof(int)) { }
public override object CurrentValue {
get {
return DateTime.Now.Month;
}
}
}
using System;
// ...
public class CurrentMonthParameter : ReadOnlyParameter {
public CurrentMonthParameter() : base("CurrentMonth", typeof(int)) { }
public override object CurrentValue {
get {
return DateTime.Now.Month;
}
}
}