summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CondicaoRepasseMap.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CondicaoRepasseMap.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CondicaoRepasseMap.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CondicaoRepasseMap.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CondicaoRepasseMap.cs
deleted file mode 100644
index 099834d..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CondicaoRepasseMap.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using FluentNHibernate.Mapping;
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Linq.Expressions;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Mappings.Seguros
-{
- public class CondicaoRepasseMap : ClassMap<CondicaoRepasseDb>
- {
- public CondicaoRepasseMap()
- {
- base.Table("condicao");
- base.LazyLoad();
- base.Id((CondicaoRepasseDb x) => (object)x.Id).GeneratedBy.Identity().Column("idcondicao");
- base.References<RamoDb>((CondicaoRepasseDb x) => x.Ramo).Column("idramo").Fetch.Join();
- base.References<SeguradoraDb>((CondicaoRepasseDb x) => x.Seguradora).Column("idciaseg").Fetch.Join();
- base.Map((CondicaoRepasseDb x) => (object)x.Parcela).Column("parcela");
- }
- }
-} \ No newline at end of file