Exemple #1
0
		public static async Task<List<WorkshopSets>> GetWorkshopList(String strParameters = "")
		{
			try
			{
				String result = await GetRESTCall("/workshop/workshopSets", strParameters);
				RootWorkshopSets _RootObj = new RootWorkshopSets(result);
				return _RootObj.Results;
			}
			catch
			{
				throw;
			}
		}
Exemple #2
0
        public static async Task <List <WorkshopSets> > GetWorkshopList(String strParameters = "")
        {
            try
            {
                String result = await GetRESTCall("/workshop/workshopSets", strParameters);

                RootWorkshopSets _RootObj = new RootWorkshopSets(result);
                return(_RootObj.Results);
            }
            catch
            {
                throw;
            }
        }