diff options
Diffstat (limited to 'Gestor.Model/Model.Relatorios/ClienteTelefone.cs')
| -rw-r--r-- | Gestor.Model/Model.Relatorios/ClienteTelefone.cs | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/Gestor.Model/Model.Relatorios/ClienteTelefone.cs b/Gestor.Model/Model.Relatorios/ClienteTelefone.cs deleted file mode 100644 index d47ef10..0000000 --- a/Gestor.Model/Model.Relatorios/ClienteTelefone.cs +++ /dev/null @@ -1,64 +0,0 @@ -using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Model.Relatorios
-{
- public class ClienteTelefone
- {
- private string _prefixo;
-
- private string _numero;
-
- public Gestor.Model.Relatorios.Cliente Cliente
- {
- get;
- set;
- }
-
- public string Numero
- {
- get
- {
- return this._numero;
- }
- set
- {
- string str;
- if (value != null)
- {
- str = value.Trim();
- }
- else
- {
- str = null;
- }
- this._numero = str;
- }
- }
-
- public string Prefixo
- {
- get
- {
- return this._prefixo;
- }
- set
- {
- string str;
- if (value != null)
- {
- str = value.Trim();
- }
- else
- {
- str = null;
- }
- this._prefixo = str;
- }
- }
-
- public ClienteTelefone()
- {
- }
- }
-}
\ No newline at end of file |