public async Task <Tuple <bool, string, List <NomineeRelationshipViewModel> > > GetNomineeRelations() { Tuple <bool, string, List <NomineeRelationshipViewModel> > result = null; try { result = await _srepo.GetNomineeRelations(); } catch (Exception ex) { ErrorLog.Write(ex); } return(result); }