0

我想验证一组对象,我需要将它们组合在一起。

var mensajesDeValidacion = _validador.Valida();
if (!_validador.EsValido){
throw new ValidacionException("Corrija los siguientes errores", mensajesDeValidacion);}

public class Empresa : IEmpresa
{
  public int IdEmpresa{get;set;}
  public string Nombre{get;set;}
}

public interface IEmpresa
{
  int IdEmpresa{get;set;}
  string Nombre{get;set;}
}

和其他类

public class ContactoEmpresa : IContactoEmpresaEmpresa
{
  public int IdContactoEmpresaEmpresa{get;set;}
  public string Direccion{get;set;}
}

public interface IContactoEmpresaEmpresa
{
  int IdContactoEmpresaEmpresa{get;set;}
  string Direccion{get;set;}
}

我怎样才能加入这两个或更多的对象?

4

2 回答 2

1

使用字段创建新类IEmpresaIContactoEmpresaEmpresa /或使用Tuple<T1,T2>

于 2012-09-06T14:35:28.837 回答
0

不久前介绍的元组,你可以看看,很简单。

http://msdn.microsoft.com/en-us/library/dd268536.aspx

于 2012-09-06T14:36:16.747 回答