Example #1
0
        public async Task <Tuple <bool, string, Franchises, Wallet> > GetFranchiseUsernameWalletByIDorName(string DcIDorName)
        {
            Tuple <bool, string, Franchises, Wallet> result = null;

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

            return(result);
        }