public async Task <List <IssueModel> > FilterIssues(string type, string title)
        {
            try
            {
                var trxns = await _api.FilterIssues(type, title);

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