diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Common/Agrupamento.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.Common/Agrupamento.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Common/Agrupamento.cs b/Codemerx/Gestor.Model/Model.Common/Agrupamento.cs new file mode 100644 index 0000000..b36c4fc --- /dev/null +++ b/Codemerx/Gestor.Model/Model.Common/Agrupamento.cs @@ -0,0 +1,23 @@ +using Gestor.Model.Converter;
+using System;
+using System.ComponentModel;
+
+namespace Gestor.Model.Common
+{
+ [TypeConverter(typeof(EnumDescriptionTypeConverter))]
+ public enum Agrupamento
+ {
+ [Description("SEM DIVISÃO")]
+ SemDivisoes,
+ [Description("SEGURADORA")]
+ Seguradora,
+ [Description("RAMO")]
+ Ramo,
+ [Description("VENDEDOR")]
+ Vendedor,
+ [Description("ESTIPULANTE")]
+ Estipulante,
+ [Description("SITUAÇÃO")]
+ Situacao
+ }
+}
\ No newline at end of file |