示例#1
0
        protected BaseRepositoryTest()
        {
            Raw = new InMemoryRawStore();

            Repository = new Repository(
                new DefaultAggregateFactory(),
                new StreamStore(Raw)
                );
        }
        public IRawStore Create()
        {
            var store = new InMemoryRawStore();

            return(store);
        }