SourceEntry.cs
1 #region Usings
3 using System;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Text;
7 #endregion Usings
8 
9 namespace Sage.ES.S50.Modelos
10 {
14  public class SourceEntry : ISourceEntry
15  {
16  #region Constructor
17  public SourceEntry()
21  {
22  _Account = new Account();
23  _Items = new List<IItem>();
24  }
25  #endregion Constructor
26 
27  #region Implementación de las propiedades de la Interfaz "ISourceEntrie"
28  public IAccount _Account { get; set; }
32 
36  public List<IItem> _Items { get; set; }
37  #endregion Implementación de las propiedades de la Interfaz "ISourceEntrie"
38  }
39 
43  public class SourceEntrySerialize
44  {
45  #region Constructor
46  public SourceEntrySerialize()
50  {
51  _Account = new Account();
52  _Items = new List<Item>();
53  }
54  #endregion Constructor
55 
56  #region Propiedades públicas
57  public Account _Account { get; set; }
61 
65  public List<Item> _Items { get; set; }
66  #endregion Propiedades públicas
67  }
68 }
Interfaz ISourceEntrie
Definition: ISourceEntry.cs:14
Clase SourceEntrie
Definition: SourceEntry.cs:14
Clase SourceEntrie para Serializar
Definition: SourceEntry.cs:43