diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/AgendaEmailMap.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/AgendaEmailMap.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/AgendaEmailMap.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/AgendaEmailMap.cs deleted file mode 100644 index 67624d1..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Ferramentas/AgendaEmailMap.cs +++ /dev/null @@ -1,21 +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 AgendaEmailMap : ClassMap<AgendaEmailDb>
- {
- public AgendaEmailMap()
- {
- base.Table("agendaemail");
- base.LazyLoad();
- base.Id((AgendaEmailDb x) => (object)x.Id).GeneratedBy.Identity().Column("idagendaemail");
- base.References<AgendaDb>((AgendaEmailDb x) => x.Agenda).Column("idagenda").Not.Nullable().Fetch.Join();
- base.Map((AgendaEmailDb x) => x.Email).Column("email").Not.Nullable();
- }
- }
-}
\ No newline at end of file |