예제 #1
0
        public async Task <Tuple <bool, string> > ApproveFranchiseRequest(FranchiseRequestResponse franchiseRequestResponse)
        {
            Tuple <bool, string> result = null;

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

            return(result);
        }