summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/FabricanteMap.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/FabricanteMap.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/FabricanteMap.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/FabricanteMap.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/FabricanteMap.cs
deleted file mode 100644
index 95b8783..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/FabricanteMap.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using FluentNHibernate.Mapping;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Linq.Expressions;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Mappings.Seguros
-{
- public class FabricanteMap : ClassMap<FabricanteDb>
- {
- public FabricanteMap()
- {
- base.Table("fabricante");
- base.LazyLoad();
- base.Id((FabricanteDb x) => (object)x.Id).GeneratedBy.Assigned().Column("idfabricante");
- base.Map((FabricanteDb x) => x.Descricao).Column("descricao");
- }
- }
-} \ No newline at end of file