summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CoberturaPadraoMap.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CoberturaPadraoMap.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CoberturaPadraoMap.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CoberturaPadraoMap.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CoberturaPadraoMap.cs
deleted file mode 100644
index 31b0990..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/CoberturaPadraoMap.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 CoberturaPadraoMap : ClassMap<CoberturaPadraoDb>
- {
- public CoberturaPadraoMap()
- {
- base.Table("coberturapadrao");
- base.LazyLoad();
- base.Id((CoberturaPadraoDb x) => (object)x.Id).GeneratedBy.Assigned().Column("idcoberturapadrao");
- base.Map((CoberturaPadraoDb x) => (object)x.IdRamo).Column("idramo");
- base.Map((CoberturaPadraoDb x) => x.Descricao).Column("descricao");
- base.Map((CoberturaPadraoDb x) => (object)x.Padrao).Column("padrao").CustomType<CustomBoolType>();
- }
- }
-} \ No newline at end of file