summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Domain.Common/TrocaCliente.cs
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
commit1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch)
treee1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Codemerx/Gestor.Model/Model.Domain.Common/TrocaCliente.cs
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.Common/TrocaCliente.cs')
-rw-r--r--Codemerx/Gestor.Model/Model.Domain.Common/TrocaCliente.cs117
1 files changed, 117 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.Common/TrocaCliente.cs b/Codemerx/Gestor.Model/Model.Domain.Common/TrocaCliente.cs
new file mode 100644
index 0000000..00b03e1
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.Domain.Common/TrocaCliente.cs
@@ -0,0 +1,117 @@
+using Gestor.Model.Domain.Seguros;
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+
+namespace Gestor.Model.Domain.Common
+{
+ public class TrocaCliente
+ {
+ private string _descricao;
+
+ private long _idClienteTrocado;
+
+ private string _nomeClienteTrocado;
+
+ private long _idclienteNovo;
+
+ private string _nomeClienteNovo;
+
+ private Gestor.Model.Domain.Seguros.Documento _documento;
+
+ public string Descricao
+ {
+ get
+ {
+ string str = this._descricao;
+ if (str != null)
+ {
+ return str.ToUpper();
+ }
+ return null;
+ }
+ set
+ {
+ this._descricao = value;
+ }
+ }
+
+ public Gestor.Model.Domain.Seguros.Documento Documento
+ {
+ get
+ {
+ return this._documento;
+ }
+ set
+ {
+ this._documento = value;
+ }
+ }
+
+ public long IdClienteNovo
+ {
+ get
+ {
+ return this._idclienteNovo;
+ }
+ set
+ {
+ this._idclienteNovo = value;
+ }
+ }
+
+ public long IdClienteTrocado
+ {
+ get
+ {
+ return this._idClienteTrocado;
+ }
+ set
+ {
+ this._idClienteTrocado = value;
+ }
+ }
+
+ public string NomeClienteNovo
+ {
+ get
+ {
+ return this._nomeClienteNovo;
+ }
+ set
+ {
+ this._nomeClienteNovo = value;
+ }
+ }
+
+ public string NomeClienteTrocado
+ {
+ get
+ {
+ return this._nomeClienteTrocado;
+ }
+ set
+ {
+ this._nomeClienteTrocado = value;
+ }
+ }
+
+ public TrocaCliente()
+ {
+ }
+
+ public List<TupleList> Log()
+ {
+ return new List<TupleList>()
+ {
+ new TupleList()
+ {
+ Tuples = new ObservableCollection<Tuple<string, string, string>>()
+ {
+ new Tuple<string, string, string>("DESCRICAO", (string.IsNullOrWhiteSpace(this.Descricao) ? "" : this.Descricao), "")
+ }
+ }
+ };
+ }
+ }
+} \ No newline at end of file