Implement DocumentWriter, control elements, and tests.
This commit is contained in:
@ -27,7 +27,7 @@ namespace zaaReloaded2.Controller.Elements
|
||||
/// Selects the time points of the last day in a given Formatter
|
||||
/// object.
|
||||
/// </summary>
|
||||
class SelectLastDay : ElementBase
|
||||
class SelectLastDay : ControlElementBase
|
||||
{
|
||||
public override string Label
|
||||
{
|
||||
@ -36,7 +36,13 @@ namespace zaaReloaded2.Controller.Elements
|
||||
|
||||
public override void Run(Formatter.Formatter formatter)
|
||||
{
|
||||
formatter.SelectLastDay();
|
||||
formatter.ProcessLastDay(this);
|
||||
}
|
||||
|
||||
public SelectLastDay() : base() { }
|
||||
|
||||
public SelectLastDay(FormatElementBase formatElement)
|
||||
: base(formatElement)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user