BLL.AsistenciasDetalle.Insertar C# (CSharp) Method

Insertar() public method

Insertar AsistenciasDetalle.....
public Insertar ( ) : bool
return bool
        public bool Insertar()
        {
            return Conexion.EjecutarDB("insert into AsistenciasDetalle(Fecha, IdAsignatura, IdEstudiante, Calificacion)" +
               "Values("+ this.IdAsistencia + "," + this.IdEstudiante + "," + this.Calificacion + ")");
        }