Exemplo n.º 1
0
    public int Delete_Per(Person person)
    {
        PersonDAL PDAL = new PersonDAL();

        try
        {
            return(PDAL.Delete_Per(person));
        }
        catch (Exception)
        {
            throw;
        }
        finally
        {
            PDAL = null;
        }
    }