using System; using xDataService.Configuration; using xDataService.Providers; using xServices.Interfaces; using xServices.Models.Entities; namespace xServices.Providers { public class XTestInMemoryRepository : XBaseInMemoryRepository { public XTestInMemoryRepository( XDataServiceConfiguration configuration, IXTestKeyGenerator keyGenerator = null, IXTestRepositoryEvents baseRepositoryEvents = null ) : base( configuration, keyGenerator, baseRepositoryEvents ) { } } }