我想验证一组对象,我需要将它们组合在一起。
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;}
}
我怎样才能加入这两个或更多的对象?