19 lines
384 B
C#
19 lines
384 B
C#
using IRaCIS.Core.Domain.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.EntityConfigration
|
|
{
|
|
public class NoneDicomStudyConfigration : IEntityTypeConfiguration<NoneDicomStudy>
|
|
{
|
|
|
|
|
|
public void Configure(EntityTypeBuilder<NoneDicomStudy> builder)
|
|
{
|
|
|
|
|
|
}
|
|
}
|
|
}
|