BLL.Profesores.Eliminar C# (CSharp) Method

Eliminar() public method

public Eliminar ( ) : bool
return bool
        public bool Eliminar()
        {
            DAL.ConexionDb con = new DAL.ConexionDb();
            con.EjecutarDB("delete from Profesores where=" + IdProfesor);
            return true;
        }