public static string EliminarDetalle(int id) { DPerfil Objeto = new DPerfil(); Objeto.ID = id; return(Objeto.EliminarDetalle(Objeto)); }
public static string Anular(int id) { DPerfil Objeto = new DPerfil(); Objeto.ID = id; return(Objeto.Anular(Objeto)); }
public static string Editar(int id, string nombre, double precio1, double precio2, bool titulo, int labRef, int precioRef, DataTable DtDetalles) { DPerfil Objeto = new DPerfil(); Objeto.ID = id; Objeto.Nombre = nombre; Objeto.Precio1 = precio1; Objeto.Precio2 = precio2; Objeto.Titulo = titulo; Objeto.LabRef = labRef; Objeto.PrecioRef = precioRef; List <DDetalle_Perfil> Detalles = new List <DDetalle_Perfil>(); foreach (DataRow row in DtDetalles.Rows) { DDetalle_Perfil Detalle = new DDetalle_Perfil(); //voy a poner que se agregue el id mientras tanto Detalle.IDExamen = Convert.ToInt32(row["IDExamen"].ToString()); Detalles.Add(Detalle); } return(Objeto.Editar(Objeto, Detalles)); }
public new static List <DPerfil> Mostrar(string TextoBuscar) { DPerfil Objeto = new DPerfil(); return(Objeto.Mostrar(TextoBuscar)); }