public async Task YourMethodName(VoucherViewModel model, Action completeAction)
        {
            await _Service.YourMethodName(model);

            completeAction();
        }