blob: 4b9d99105a061e396943f6344ad05e9e8ee04763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
using System;
namespace Gestor.Application.Model.Ajuda;
public class Atendimento
{
private string _solicitante;
private string _assunto;
private string _status;
private string _corpo;
public long IdAtendimento { get; set; }
public DateTime? Abertura { get; set; }
public string Solicitante
{
get
{
return _solicitante?.ToUpper().Trim();
}
set
{
_solicitante = value;
}
}
public string Assunto
{
get
{
return _assunto?.ToUpper().Trim();
}
set
{
_assunto = value;
}
}
public DateTime? Solucao { get; set; }
public string Status
{
get
{
return _status?.ToUpper().Trim();
}
set
{
_status = value;
}
}
public string Corpo
{
get
{
return _corpo?.ToUpper().Trim();
}
set
{
_corpo = value;
}
}
}
|