ILibroColumnaComboValor.cs
1 # region Usings
2 using System;
3 using System.Collections.Generic;
4 using System.Drawing;
5 using System.Linq;
6 using System.Text;
7 # endregion Usings
8 
9 namespace Sage.ES.S50.Modelos.Interficies
10 {
14  public interface ILibroColumnaComboValor
15  {
19  object _Key { get; }
20 
25  void _Load(Dictionary<string, string> toDatos);
26 
31  void _Load(Dictionary<int, string> toDatos);
32 
37  void _Load<T>(List<object> tlsDescartar = null) where T : struct;
38  }
39 }