Beispiel #1
0
		public static async Task<List<WorkshopBooking>> GetWorkshopBookings(String strParamters = "")
		{
			try
			{
				String result = await GetRESTCall("/workshop/booking/search", strParamters);
				RootWorkshopBooking _RootObj = new RootWorkshopBooking(result);
				return _RootObj.Results;
			}
			catch
			{
				throw;
			}
		}
Beispiel #2
0
        public static async Task <List <WorkshopBooking> > GetWorkshopBookings(String strParamters = "")
        {
            try
            {
                String result = await GetRESTCall("/workshop/booking/search", strParamters);

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