Exemplo n.º 1
0
 public CentralLayoutBuilder(ITableLayoutDecoratorApplier tableLayoutDecoratorApplier, List <ITableLayoutDecorator> tableLayoutDecorators, ITableLayoutWrapperFactory tableLayoutWrapperFactory, IPropertyApplier <IControlProperties> propertyApplier)
 {
     _tableLayoutDecoratorApplier = tableLayoutDecoratorApplier;
     _tableLayoutWrapperFactory   = tableLayoutWrapperFactory;
     _propertyApplier             = propertyApplier;
     _tableLayoutDecorators       = tableLayoutDecorators;
 }
Exemplo n.º 2
0
 public void Setup()
 {
     _tableLayoutDecorators     = new List <ITableLayoutDecorator>();
     _layoutDecoratorApplier    = A.Fake <ITableLayoutDecoratorApplier>();
     _tableLayoutWrapperFactory = A.Fake <ITableLayoutWrapperFactory>();
     _propertyApplier           = A.Fake <IPropertyApplier <IControlProperties> >();
     _centralLayoutBuilder      = new CentralLayoutBuilder(_layoutDecoratorApplier, _tableLayoutDecorators, _tableLayoutWrapperFactory, _propertyApplier);
 }
Exemplo n.º 3
0
 public void Setup()
 {
     _dataEntryForm             = A.Fake <IDataEntryForm>();
     _tableLayoutWrapperFactory = A.Fake <ITableLayoutWrapperFactory>();
     _builder = new DataEntryFormBuilder(_tableLayoutWrapperFactory);
 }
Exemplo n.º 4
0
 public DataEntryFormFactory(ITableLayoutWrapperFactory tableLayoutWrapperFactory)
 {
     _tableLayoutWrapperFactory = tableLayoutWrapperFactory;
 }