Added Entry initial repo and services for a create action.
This commit is contained in:
13
Component/Entries/Repository/EntryConfiguration.cs
Normal file
13
Component/Entries/Repository/EntryConfiguration.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
|
||||
namespace Diary.Component.Entries.Repository
|
||||
{
|
||||
public class EntryConfiguration : IEntityTypeConfiguration<Entry>
|
||||
{
|
||||
public void Configure(EntityTypeBuilder<Entry> builder)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user