public async Task <List <ConsultationModel> > GetAllConsultations()
        {
            try
            {
                var trxns = await _api.GetAllConsultations();

                return(trxns);
            }
            catch (Exception e)
            {
                throw e;
            }
        }