public ClientReportPage(Client client)
        {
            InitializeComponent();
            var updateClientViewModel = new ClientReportsViewModel();

            updateClientViewModel.Client = client;
            BindingContext = updateClientViewModel;
        }
Example #2
0
        async void download()
        {
            /* var response = await dialogService.ShowConfirm(
             *   "Confirm",
             *   "Are you sure to delete this Client ?");
             * if (!response)
             * {
             *   return;
             * }*/

            await ClientReportsViewModel.GetInstance().Download(this);
        }