/// <summary>
        /// Find Order by Approval 
        /// </summary>
        /// <param name="coreRepository"></param>
        internal void ResolveOrderId(biz.dfch.CS.Appclusive.Api.Core.Core coreRepository)
        {
            Contract.Requires(null != coreRepository);

            if (null == this.Job)
            {
                this.ResolveJob(coreRepository);
            }

            this.Order = AutoMapper.Mapper.Map<Order>(coreRepository.InvokeEntityActionWithSingleResult<Api.Core.Order>(this, "Order", null));
            if (null != this.Order)
            {
                this.OrderId = Order.Id;
            }
        }