Hi,
It's quite simple, first you have to load the package and then execute it - that's it 🙂
Example:
Microsoft.SqlServer.Dts.Runtime.Application app =
new Microsoft.SqlServer.Dts.Runtime.Application();
Package package;
...
package = app.LoadPackage(packageFile, null);
DTSExecResult result...