Is it possible to execute a method before and after all tests in the assembly?

I would like to built an nunit project for selenium ui automation. I would like to sign in to the site before running all tests (all of them) and to close the browser after running all tests (all of them).

I can’t use the SetUp since it related to fixtures and I want to do it before and after everything.

Do you know who to execute it?