public void agregarContenido(DataTable datos, string hoja, int x, int y) { Contenidos.Add(new Contenido() { Datos = datos, HojaExcel = hoja, X = x, Y = y }); }
public void agregarContenido(object[][] datos, string hoja, int x, int y, string sColor = "") { Contenidos.Add(new Contenido() { Datos = datos, HojaExcel = hoja, X = x, Y = y, Color = sColor//PROY-ABSA-2015-001 JZAMUDIO }); }