26 lines
749 B
C#
26 lines
749 B
C#
using System;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
using xServices.Interfaces;
|
|
using xServices.Models.Entities;
|
|
|
|
namespace xServices.Providers
|
|
{
|
|
public class XTestMongoRepository : XBaseMongoRepository<XTest, Guid>
|
|
{
|
|
public XTestMongoRepository(
|
|
XDataBaseConfiguration dbConfiguration,
|
|
XDataServiceConfiguration configuration,
|
|
string collectionName = null,
|
|
IXTestKeyGenerator keyGenerator = null,
|
|
IXTestRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
dbConfiguration,
|
|
configuration,
|
|
collectionName,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |