コード例 #1
0
        /// <inheritdoc />
        public async Task UpdateAsync(long dealId, AgileCrmDealRequest agileCrmDealModel)
        {
            const string MethodName = nameof(this.UpdateAsync);

            this.logger.LogMethodStart(ClassName, MethodName);

            try
            {
                // Validate argument object
                agileCrmDealModel.ValidateModel();

                // Serialize object to JSON
                var dealEntityBase = agileCrmDealModel.ToDealEntityBase();

                dealEntityBase.Id = dealId;

                var stringContent = dealEntityBase.ToStringContent();

                // Send JSON to server
                const string Uri = "opportunity/partial-update";

                var httpResponseMessage = await this.httpClient.PutAsync(Uri, stringContent).ConfigureAwait(false);

                // Analyze server response for errors
                httpResponseMessage.EnsureSuccessStatusCode();
            }
            catch (Exception exception)
            {
                this.logger.LogException(ClassName, MethodName, exception);
                throw;
            }

            this.logger.LogUpdated(ServiceType.Deal, dealId);
            this.logger.LogMethodEnd(ClassName, MethodName);
        }
コード例 #2
0
        /// <inheritdoc />
        public async Task CreateAsync(string emailAddress, AgileCrmDealRequest agileCrmDealModel)
        {
            const string MethodName = nameof(this.CreateAsync);

            this.logger.LogMethodStart(ClassName, MethodName);

            var dealId = default(long);

            try
            {
                // Validate argument object
                agileCrmDealModel.ValidateModel();

                // Serialize object to JSON
                var dealEntityBase = agileCrmDealModel.ToDealEntityBase();

                var stringContent = dealEntityBase.ToStringContent();

                // Send JSON to server
                var uri = $"opportunity/email/{emailAddress}";

                var httpResponseMessage = await this.httpClient.PostAsync(uri, stringContent).ConfigureAwait(false);

                // Analyze server response for errors
                httpResponseMessage.EnsureSuccessStatusCode();

                // Retrieve identifier for logging
                var httpContentAsString = await httpResponseMessage.Content.ReadAsStringAsync().ConfigureAwait(false);

                dealId = httpContentAsString.DeserializeJson(new { id = default(long) }).id;
            }
            catch (Exception exception)
            {
                this.logger.LogException(ClassName, MethodName, exception);
                throw;
            }

            this.logger.LogCreated(ServiceType.Deal, dealId);
            this.logger.LogMethodEnd(ClassName, MethodName);
        }