Example #1
0
 public PropertyContainerService(DialogService dialog, TransactionsService tx, IStorageAPI storage, PropertyProviderService propertyProvider)
 {
     this.dialog           = dialog;
     this.tx               = tx;
     this.storage          = storage;
     this.propertyProvider = propertyProvider;
 }
Example #2
0
 public EntityService(
     TransactionsService tx,
     IStorageAPI storage,
     PropertyProviderService propertyProvider,
     PropertyContainerService propertyContainer
     )
 {
     this.tx                = tx;
     this.storage           = storage;
     this.propertyProvider  = propertyProvider;
     this.propertyContainer = propertyContainer;
 }
 public PropertyProviderService(DialogService dialog, IStorageAPI storage, TransactionsService tx)
 {
     this.dialog  = dialog;
     this.storage = storage;
     this.tx      = tx;
 }