public DataTable llenar_movimientos(DateTime fecha_ini, DateTime fecha_fin) { DataTable dt = new DataTable(); try { GestorBase BD = new GestorBase(); dt = BD.llenar_Movimientos(fecha_ini, fecha_fin); } catch (Exception ex) { throw new Exception(ex.Message, ex); } return(dt); }
public DataTable llenar_movimientos(string usuario) { DataTable dt = new DataTable(); try { GestorBase BD = new GestorBase(); dt = BD.llenar_Movimientos(usuario); } catch (Exception ex) { throw new Exception(ex.Message, ex); } return(dt); }