19 lines
531 B
C#
19 lines
531 B
C#
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.ResultsPrinters.Basic
|
|
{
|
|
public class PrinterFactory : IComponentFactory
|
|
{
|
|
public string ClassName { get { return "BasicResultsPrinter"; } }
|
|
|
|
public void ResetStaticProperties() { Printer.ResetStaticProperties(); }
|
|
|
|
public IComponentCfg DefaultConfig() { return new PrinterCfg(this); }
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
|
|
{
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(PrinterCfg), component, this);
|
|
}
|
|
}
|
|
}
|