public async Task <Tuple <bool, string, List <FranchiseRequestViewModel> > > GetFranchiseUserRequests(int UserID) { Tuple <bool, string, List <FranchiseRequestViewModel> > result = null; try { result = await _repo.GetFranchiseUserRequests(UserID); } catch (Exception ex) { ErrorLog.Write(ex); } return(result); }