diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/ResponsavelTarefaMap.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/ResponsavelTarefaMap.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/ResponsavelTarefaMap.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/ResponsavelTarefaMap.cs deleted file mode 100644 index 82d9578..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/ResponsavelTarefaMap.cs +++ /dev/null @@ -1,22 +0,0 @@ -using FluentNHibernate.Mapping;
-using Gestor.Infrastructure.Entities.Ferramentas;
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Linq.Expressions;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Mappings.Ferramentas
-{
- public class ResponsavelTarefaMap : ClassMap<ResponsavelTarefaDb>
- {
- public ResponsavelTarefaMap()
- {
- base.Table("ResponsavelTarefa");
- base.LazyLoad();
- base.Id((ResponsavelTarefaDb x) => (object)x.Id).GeneratedBy.Identity();
- base.References<UsuarioDb>((ResponsavelTarefaDb x) => x.Usuario).Not.Nullable().Fetch.Join();
- base.Map((ResponsavelTarefaDb x) => (object)x.IdTarefa).Not.Nullable();
- }
- }
-}
\ No newline at end of file |