25 lines
652 B
C#
25 lines
652 B
C#
using System.Collections.Generic;
|
|
using xDataService.Interfaces;
|
|
using xDataService.Models;
|
|
|
|
namespace xServices.Databases
|
|
{
|
|
public class XApiDatabaseDescriptor : XDatabaseDescriptor<XApiDbContext>, IXDatabaseDescriptor<XApiDbContext>
|
|
{
|
|
public XApiDatabaseDescriptor() : base(
|
|
name: "xApiDb",
|
|
repositories: new List<XRepositoryDescriptor>
|
|
{
|
|
//
|
|
// XTest Entity ...
|
|
// new XRepositoryDescriptor
|
|
// {
|
|
// //
|
|
// }
|
|
}
|
|
)
|
|
{
|
|
// Context = XApiDbContext;
|
|
}
|
|
}
|
|
} |