last ...
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user