예제 #1
0
        public override IDecorationOf <IStore> ApplyThisDecorationTo(IStore store)
        {
            var returnValue = new LoggingStoreDecoration(store, this.Logger);

            return(returnValue);
        }
예제 #2
0
 public override IDecorationOf<IStore> ApplyThisDecorationTo(IStore store)
 {
     var returnValue = new LoggingStoreDecoration(store, this.Logger);
     return returnValue;
 }