25 lines
789 B
C#
25 lines
789 B
C#
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
using xStringService.Interfaces.Entities;
|
|
using xStringService.Models.Entities;
|
|
|
|
namespace xStringService.Providers.Entities
|
|
{
|
|
public class XStringMongoRepository : XBaseMongoRepository<XString, int>, IXStringRepository
|
|
{
|
|
public XStringMongoRepository(
|
|
XDataBaseConfiguration dbConfiguration,
|
|
XDataServiceConfiguration configuration,
|
|
string collectionName = null,
|
|
IXStringKeyGenerator keyGenerator = null,
|
|
IXStringRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
dbConfiguration,
|
|
configuration,
|
|
collectionName,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |