Ejemplo n.º 1
0
        public async Task <Tuple <bool, string, List <FranchiseViewModel> > > GetFranchiseDetails()
        {
            Tuple <bool, string, List <FranchiseViewModel> > result = null;

            try
            {
                result = await _repo.GetFranchiseDetails();
            }
            catch (Exception ex)
            {
                ErrorLog.Write(ex);
            }

            return(result);
        }