diff --git a/Conductor/Api/ApplicationResourceApi.cs b/Conductor/Api/ApplicationResourceApi.cs
index 6cb93351..0573adaf 100644
--- a/Conductor/Api/ApplicationResourceApi.cs
+++ b/Conductor/Api/ApplicationResourceApi.cs
@@ -1,796 +1,463 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using RestSharp;
using Conductor.Client;
using Conductor.Client.Models;
+using RestSharp;
namespace Conductor.Api
{
///
- /// Represents a collection of functions to interact with the API endpoints
+ /// Represents a collection of functions to interact with the API endpoints
///
- public interface IApplicationResourceApi : IApiAccessor
+ public class ApplicationResourceApi : IApplicationResourceApi
{
- #region Synchronous Operations
- ///
- ///
- ///
- ///
- ///
- ///
- /// Thrown when fails to make API call
- ///
- ///
- /// Object
- Object AddRoleToApplicationUser(string applicationId, string role);
+ private ExceptionFactory _exceptionFactory = (name, response) => null;
///
- ///
- ///
- ///
- ///
- ///
- /// Thrown when fails to make API call
- ///
- ///
- /// ApiResponse of Object
- ApiResponse