| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Data.Entity.ModelConfiguration;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Data.Mapping.Appendix
- {
- public class AppendixMap : EntityTypeConfiguration<Core.Domain.Appendix.Appendix>
- {
- public AppendixMap()
- {
- ToTable("Appendix");
- HasKey(a => a.Id);
- }
- }
- }
|