ISourceEntry.cs
1 # region Usings
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
6 # endregion Usings
7 
8 namespace Sage.ES.S50.Modelos.Interficies
9 {
13 
14  public interface ISourceEntry
15  {
19  List<IItem> _Items { get; set; }
20 
24  IAccount _Account { get; set; }
25  }
26 }
Interfaz ISourceEntrie
Definition: ISourceEntry.cs:14