diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/CoberturaDb.cs')
| -rw-r--r-- | Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/CoberturaDb.cs | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/CoberturaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/CoberturaDb.cs new file mode 100644 index 0000000..51bc57c --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/CoberturaDb.cs @@ -0,0 +1,49 @@ +using Gestor.Infrastructure.Entities.Generic;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Seguros
+{
+ public class CoberturaDb : EntityBase
+ {
+ public virtual CoberturaPadraoDb CoberturaPadrao
+ {
+ get;
+ set;
+ }
+
+ public virtual decimal Franquia
+ {
+ get;
+ set;
+ }
+
+ public virtual ItemDb Item
+ {
+ get;
+ set;
+ }
+
+ public virtual decimal Lmi
+ {
+ get;
+ set;
+ }
+
+ public virtual string Observacao
+ {
+ get;
+ set;
+ }
+
+ public virtual decimal Premio
+ {
+ get;
+ set;
+ }
+
+ public CoberturaDb()
+ {
+ }
+ }
+}
\ No newline at end of file |