示例#1
0
        public string AddFavouritesToDb(string locationKey, string place, string country, string region, string userID)
        {
            try
            {
                var obj = DbController.AddFavouritesToDb(userID, locationKey, place, country, region);
                return(obj);
            }

            catch (Exception ex)
            {
                throw new Exception(ex.InnerException.ToString());
            }
        }