diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/CategoriaTarefaMap.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/CategoriaTarefaMap.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/CategoriaTarefaMap.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/CategoriaTarefaMap.cs deleted file mode 100644 index b0cd7d1..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/CategoriaTarefaMap.cs +++ /dev/null @@ -1,20 +0,0 @@ -using FluentNHibernate.Mapping;
-using Gestor.Infrastructure.Entities.Ferramentas;
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Linq.Expressions;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Mappings.Ferramentas
-{
- public class CategoriaTarefaMap : ClassMap<CategoriaTarefaDb>
- {
- public CategoriaTarefaMap()
- {
- base.Table("CategoriaTarefa");
- base.LazyLoad();
- base.Id((CategoriaTarefaDb x) => (object)x.Id).GeneratedBy.Identity();
- base.Map((CategoriaTarefaDb x) => x.Descricao);
- }
- }
-}
\ No newline at end of file |