BLL.AsistenciasDetalle.Modificar C# (CSharp) Метод

Modificar() публичный Метод

Modificar AsistenciasDetalle.....
public Modificar ( ) : bool
Результат bool
        public bool Modificar()
        {
            return Conexion.EjecutarDB("Update AsistenciasDetalle " +
                "set IdAsistencia=" + this.IdAsistencia + "', IdEstudiante=" + this.IdEstudiante + ", Calificacion=" + this.Calificacion +  " " +
                "Where Id = " + this.Id);
        }