blob: 3ae4a15fb42dc9c6752f2cf85fe27244beeb622d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum FormaRepasse
{
[Description("CONFORME O RECEBIMENTO")]
[OldValue("1")]
Recebimento = 1,
[Description("SEMPRE À VISTA")]
[OldValue("2")]
Vista = 2,
[Description("SEMPRE À PRAZO")]
[OldValue("3")]
Prazo = 3
}
}
|