Ejemplo n.º 1
0
        /// <summary>
        /// Convert a given BusinessContact to a ViewModel
        /// </summary>
        public static ViewModels.BusinessContact ToViewModel(this MicrosoftDynamicsCRMbcgovBusinesscontact businessContact)
        {
            ViewModels.BusinessContact result = null;
            if (businessContact != null)
            {
                result = new ViewModels.BusinessContact();
                if (businessContact.BcgovBusinesscontactid != null)
                {
                    result.id = businessContact.BcgovBusinesscontactid;
                }
                result.jobTitle = businessContact.BcgovJobtitle;

                if (businessContact.BcgovContacttype != null)
                {
                    result.contactType = (ContactTypeCodes)businessContact.BcgovContacttype;
                }

                if (businessContact.BcgovRegisteredsellerownermanager != null)
                {
                    result.registeredSellerOwnerManager = (OwnerManagerCodes)businessContact.BcgovRegisteredsellerownermanager;
                }

                if (businessContact.BcgovContact != null)
                {
                    result.contact = businessContact.BcgovContact.ToViewModel();
                }

                if (businessContact.BcgovBusinessProfile != null)
                {
                    result.account = businessContact.BcgovBusinessProfile.ToViewModel();
                }
            }
            return(result);
        }
Ejemplo n.º 2
0
 public static void CopyValues(this MicrosoftDynamicsCRMbcgovBusinesscontact to, ViewModels.BusinessContact from)
 {
     to.BcgovJobtitle    = from.jobTitle;
     to.BcgovContacttype = (int?)from.contactType;
     to.BcgovRegisteredsellerownermanager = (int?)from.registeredSellerOwnerManager;
     to.BcgovFromdate = from.fromdate;
     to.BcgovEnddate  = from.enddate;
 }
Ejemplo n.º 3
0
        public static MicrosoftDynamicsCRMbcgovBusinesscontact ToModel(this ViewModels.BusinessContact from, IDynamicsClient system)
        {
            MicrosoftDynamicsCRMbcgovBusinesscontact result = new MicrosoftDynamicsCRMbcgovBusinesscontact()
            {
                BcgovContacttype = (int?)from.contactType,
                ContactODataBind = system.GetEntityURI("contacts", from.contact.id),
                AccountODataBind = system.GetEntityURI("accounts", from.account.id),
                BcgovJobtitle    = from.jobTitle,
                BcgovRegisteredsellerownermanager = (int?)from.registeredSellerOwnerManager
            };

            if (!string.IsNullOrEmpty(from.id))
            {
                result.BcgovBusinesscontactid = from.id;
            }

            return(result);
        }
Ejemplo n.º 4
0
        public static MicrosoftDynamicsCRMbcgovBusinesscontact GetBusinessContactById(this IDynamicsClient system, string id)
        {
            MicrosoftDynamicsCRMbcgovBusinesscontact result = null;
            List <string> expand = new List <string>()
            {
                "bcgov_Contact", "bcgov_BusinessProfile"
            };

            try
            {
                result = system.Businesscontacts.GetByKey(bcgovBusinesscontactid: id, expand: expand);
            }
            catch (Exception)
            {
                result = null;
            }

            return(result);
        }
Ejemplo n.º 5
0
        public static MicrosoftDynamicsCRMbcgovBusinesscontact GetBusinessContactLink(this IDynamicsClient system, ILogger _logger, string contactId, string accountId)
        {
            MicrosoftDynamicsCRMbcgovBusinesscontact result = null;

            try
            {
                var businessContact = system.Businesscontacts.Get(filter: $"_bcgov_contact_value eq {contactId} and _bcgov_businessprofile_value eq {accountId}");
                result = businessContact.Value.FirstOrDefault();
            }
            catch (OdataerrorException odee)
            {
                _logger.LogError(LoggingEvents.Error, "Error while getting a business contact.");
                _logger.LogError("Request:");
                _logger.LogError(odee.Request.Content);
                _logger.LogError("Response:");
                _logger.LogError(odee.Response.Content);
            }

            return(result);
        }
Ejemplo n.º 6
0
 /// <summary>
 /// Add new entity to bcgov_businesscontacts
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// New entity
 /// </param>
 /// <param name='prefer'>
 /// Required in order for the service to return a JSON representation of the
 /// object.
 /// </param>
 public static MicrosoftDynamicsCRMbcgovBusinesscontact Create(this IBusinesscontacts operations, MicrosoftDynamicsCRMbcgovBusinesscontact body, string prefer = "return=representation")
 {
     return(operations.CreateAsync(body, prefer).GetAwaiter().GetResult());
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Update entity in bcgov_businesscontacts
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='bcgovBusinesscontactid'>
 /// key: bcgov_businesscontactid of bcgov_businesscontact
 /// </param>
 /// <param name='body'>
 /// New property values
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task UpdateAsync(this IBusinesscontacts operations, string bcgovBusinesscontactid, MicrosoftDynamicsCRMbcgovBusinesscontact body, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.UpdateWithHttpMessagesAsync(bcgovBusinesscontactid, body, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
Ejemplo n.º 8
0
 /// <summary>
 /// Update entity in bcgov_businesscontacts
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='bcgovBusinesscontactid'>
 /// key: bcgov_businesscontactid of bcgov_businesscontact
 /// </param>
 /// <param name='body'>
 /// New property values
 /// </param>
 public static void Update(this IBusinesscontacts operations, string bcgovBusinesscontactid, MicrosoftDynamicsCRMbcgovBusinesscontact body)
 {
     operations.UpdateAsync(bcgovBusinesscontactid, body).GetAwaiter().GetResult();
 }
Ejemplo n.º 9
0
 /// <summary>
 /// Add new entity to bcgov_businesscontacts
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// New entity
 /// </param>
 /// <param name='prefer'>
 /// Required in order for the service to return a JSON representation of the
 /// object.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <MicrosoftDynamicsCRMbcgovBusinesscontact> CreateAsync(this IBusinesscontacts operations, MicrosoftDynamicsCRMbcgovBusinesscontact body, string prefer = "return=representation", CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.CreateWithHttpMessagesAsync(body, prefer, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Ejemplo n.º 10
0
        /// <summary>
        /// Get a Account by their Guid
        /// </summary>
        /// <param name="system"></param>
        /// <param name="id"></param>
        /// <returns></returns>
        public static void CreateBusinessContactLink(this IDynamicsClient system, ILogger _logger, string contactId, string accountId, string jobtitle, int?contactType, string jobTitle)
        {
            bool   valid        = true;
            string errorMessage = "";

            if (string.IsNullOrEmpty(contactId))
            {
                errorMessage += "ContactId is null. ";
                valid         = false;
            }
            if (string.IsNullOrEmpty(accountId))
            {
                errorMessage += "AccountId is null. ";
                valid         = false;
            }

            if (contactType == null)
            {
                errorMessage += "ContactType is null. ";
                valid         = false;
            }

            if (valid)
            {
                MicrosoftDynamicsCRMbcgovBusinesscontact result = system.GetBusinessContactLink(_logger, contactId, accountId);

                if (result == null)
                {
                    // create it.
                    try
                    {
                        result = new MicrosoftDynamicsCRMbcgovBusinesscontact()
                        {
                            BcgovContacttype = contactType,
                            ContactODataBind = system.GetEntityURI("contacts", contactId),
                            AccountODataBind = system.GetEntityURI("accounts", accountId),
                            BcgovJobtitle    = jobTitle,
                            BcgovFromdate    = DateTimeOffset.Now
                        };

                        if (!string.IsNullOrEmpty(jobtitle))
                        {
                            result.BcgovJobtitle = jobtitle;
                        }
                        result = system.Businesscontacts.Create(result);
                    }
                    catch (OdataerrorException odee)
                    {
                        if (_logger != null)
                        {
                            _logger.LogError(LoggingEvents.Error, "Error while creating a business contact.");
                            _logger.LogError("Request:");
                            _logger.LogError(odee.Request.Content);
                            _logger.LogError("Response:");
                            _logger.LogError(odee.Response.Content);
                        }
                    }

                    // now link the BusinessContact to the Account.

                    try
                    {
                        OdataId oDataId = new OdataId()
                        {
                            OdataIdProperty = system.GetEntityURI("bcgov_businesscontacts", result.BcgovBusinesscontactid)
                        };
                        system.Accounts.AddReference(accountId, "bcgov_account_bcgov_businesscontact_BusinessProfile", oDataId);
                    }
                    catch (OdataerrorException odee)
                    {
                        if (_logger != null)
                        {
                            _logger.LogError(LoggingEvents.Error, "Error while adding reference from account to business contact");
                            _logger.LogError("Request:");
                            _logger.LogError(odee.Request.Content);
                            _logger.LogError("Response:");
                            _logger.LogError(odee.Response.Content);
                        }
                    }

                    // now link the contact

                    try
                    {
                        OdataId oDataId = new OdataId()
                        {
                            OdataIdProperty = system.GetEntityURI("bcgov_businesscontacts", result.BcgovBusinesscontactid)
                        };
                        system.Contacts.AddReference(contactId, "bcgov_contact_bcgov_businesscontact_Contact", oDataId);
                    }
                    catch (OdataerrorException odee)
                    {
                        if (_logger != null)
                        {
                            _logger.LogError(LoggingEvents.Error, "Error while adding reference from contact to business contact.");
                            _logger.LogError("Request:");
                            _logger.LogError(odee.Request.Content);
                            _logger.LogError("Response:");
                            _logger.LogError(odee.Response.Content);
                        }
                    }
                }
            }
            else
            {
                if (_logger != null)
                {
                    _logger.LogError(LoggingEvents.Error, "Invalid parameters passed.");
                    _logger.LogError(errorMessage);
                }
            }
        }
Ejemplo n.º 11
0
        /// <summary>
        /// Update entity in bcgov_businesscontacts
        /// </summary>
        /// <param name='bcgovBusinesscontactid'>
        /// key: bcgov_businesscontactid of bcgov_businesscontact
        /// </param>
        /// <param name='body'>
        /// New property values
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <exception cref="HttpOperationException">
        /// Thrown when the operation returned an invalid status code
        /// </exception>
        /// <exception cref="ValidationException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <exception cref="System.ArgumentNullException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <return>
        /// A response object containing the response body and response headers.
        /// </return>
        public async Task <HttpOperationResponse> UpdateWithHttpMessagesAsync(string bcgovBusinesscontactid, MicrosoftDynamicsCRMbcgovBusinesscontact body, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            if (bcgovBusinesscontactid == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "bcgovBusinesscontactid");
            }
            if (body == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "body");
            }
            // Tracing
            bool   _shouldTrace  = ServiceClientTracing.IsEnabled;
            string _invocationId = null;

            if (_shouldTrace)
            {
                _invocationId = ServiceClientTracing.NextInvocationId.ToString();
                Dictionary <string, object> tracingParameters = new Dictionary <string, object>();
                tracingParameters.Add("bcgovBusinesscontactid", bcgovBusinesscontactid);
                tracingParameters.Add("body", body);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters);
            }
            // Construct URL
            var _baseUrl = Client.BaseUri.AbsoluteUri;
            var _url     = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "bcgov_businesscontacts({bcgov_businesscontactid})").ToString();

            _url = _url.Replace("{bcgov_businesscontactid}", System.Uri.EscapeDataString(bcgovBusinesscontactid));
            // Create HTTP transport objects
            var _httpRequest = new HttpRequestMessage();
            HttpResponseMessage _httpResponse = null;

            _httpRequest.Method     = new HttpMethod("PATCH");
            _httpRequest.RequestUri = new System.Uri(_url);
            // Set Headers


            if (customHeaders != null)
            {
                foreach (var _header in customHeaders)
                {
                    if (_httpRequest.Headers.Contains(_header.Key))
                    {
                        _httpRequest.Headers.Remove(_header.Key);
                    }
                    _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
                }
            }

            // Serialize Request
            string _requestContent = null;

            if (body != null)
            {
                _requestContent      = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(body, Client.SerializationSettings);
                _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
                _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
            }
            // Set Credentials
            if (Client.Credentials != null)
            {
                cancellationToken.ThrowIfCancellationRequested();
                await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);

            if (_shouldTrace)
            {
                ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
            }
            HttpStatusCode _statusCode = _httpResponse.StatusCode;

            cancellationToken.ThrowIfCancellationRequested();
            string _responseContent = null;

            if ((int)_statusCode != 204)
            {
                var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                if (_httpResponse.Content != null)
                {
                    _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
                }
                else
                {
                    _responseContent = string.Empty;
                }
                ex.Request  = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
                ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
                if (_shouldTrace)
                {
                    ServiceClientTracing.Error(_invocationId, ex);
                }
                _httpRequest.Dispose();
                if (_httpResponse != null)
                {
                    _httpResponse.Dispose();
                }
                throw ex;
            }
            // Create Result
            var _result = new HttpOperationResponse();

            _result.Request  = _httpRequest;
            _result.Response = _httpResponse;
            if (_shouldTrace)
            {
                ServiceClientTracing.Exit(_invocationId, _result);
            }
            return(_result);
        }