public override void Dispose()
        {
            base.Dispose();

            CancellationService.Cancel();
        }
        protected override void LoseIntent()
        {
            base.LoseIntent();

            CancellationService.Cancel();
        }
 CancellationsController()
 {
     //declare CustomersService type instance variable
     cancService = new CancellationService();
 }