using (HuAPConnection Connection = new HuAPConnection())
using (HuView CPEMTO = Connection.GetView("CP0126"))
using (HuView CPEMPT = Connection.GetView("CP0010"))
using (HuView CPEMPL = Connection.GetView("CP0014"))
using (HuView CPEMPD = Connection.GetView("CP0008"))
using (HuView CPEMDO = Connection.GetView("CP0125"))
using (HuView CPEMDB = Connection.GetView("CP0041"))
using (HuView CPEMPC = Connection.GetView("CP0053"))
using (HuView CPEMBK = Connection.GetView("CP0201"))
using (HuView CPEMPO = Connection.GetView("CP0122"))
using (HuView CPEMCS = Connection.GetView("CP0118"))
using (HuView CPEMTF = Connection.GetView("CP0062"))
{
CPEMTO.Compose(CPEMPT);
CPEMPT.Compose(CPEMPL, CPEMTF, CPEMTO);
CPEMPL.Compose(CPEMPD, CPEMPT, CPEMPC, CPEMBK, CPEMPO, CPEMCS);
CPEMPD.Compose(CPEMPL, CPEMDO, CPEMDB);
CPEMDO.Compose(CPEMPD);
CPEMDB.Compose(CPEMPD);
CPEMPC.Compose(CPEMPL);
CPEMBK.Compose(CPEMPL);
CPEMPO.Compose(CPEMPL);
CPEMCS.Compose(CPEMPL);
CPEMTF.Compose(CPEMPT);
// Code Here
}