Exemplo n.º 1
0
 public SyncElementBase(IDataService <SSMDContext> dataService, string name = "", SyncElementConfiguration configuration = null)
 {
     Name          = name;
     Configuration = configuration ?? new SyncElementConfiguration();
     _dataService  = dataService;
     Dependencies  = new List <ISyncElement>();
     ReadElementData();
 }
Exemplo n.º 2
0
 public OperationAggregator(IDataService <SSMDContext> dataService, string name = "", SyncElementConfiguration configuration = null) : base(dataService, name, configuration)
 {
 }