コード例 #1
0
        public ActionResult AllocateMarketJob(MarketJobAllocationModel model)
        {
            var marketJob = new MarketJob()
            {
                Id = model.MarketJobId
            };
            var job = _marketServices.UpdateMarketJobAllocation(marketJob.Id, model.ResourceId, CurrentUserId, CurrentTenantId, model.LatestJobStatusId);

            return(Json(model, JsonRequestBehavior.AllowGet));
        }