summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs
new file mode 100644
index 0000000..eb5a9d2
--- /dev/null
+++ b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs
@@ -0,0 +1,32 @@
+using Gestor.Infrastructure.Entities.Generic;
+using Gestor.Infrastructure.Entities.Seguros;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Ferramentas
+{
+ public class OrigemClienteDb : EntityBase
+ {
+ public virtual ClienteDb Cliente
+ {
+ get;
+ set;
+ }
+
+ public virtual string Nome
+ {
+ get;
+ set;
+ }
+
+ public virtual long TipoOrigem
+ {
+ get;
+ set;
+ }
+
+ public OrigemClienteDb()
+ {
+ }
+ }
+} \ No newline at end of file