private async void GetPatronInfo(int id)
        {
            var patron = await(new PatronServices()).GetPatron(id);

            if (patron != null)
            {
                FillInputs(patron);
            }
            else
            {
                MessageControl.ErrorRetrievingInfo().ShowMessage();
                MainWindow.DisplayScreen(new ShowPatrons());
            }
        }