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