예제 #1
0
        protected CompanyCamService(CompanyCamRequestOptions options)
        {
            Options = options;

            var url = $"https://api.companycam.com/v2/"; // set the URL for the API

            this.Client = new HttpClient()
            {
                BaseAddress = new System.Uri(url)
            };
            this.SetHeaders();
        }
예제 #2
0
 public GroupService(CompanyCamRequestOptions options = null) : base(options)
 {
 }
예제 #3
0
 public ProjectPhotoService(CompanyCamRequestOptions options = null) : base(options)
 {
 }