예제 #1
0
        public JsonPatchDocument <ApiChannelRequestModel> CreatePatch(ApiChannelRequestModel model)
        {
            var patch = new JsonPatchDocument <ApiChannelRequestModel>();

            patch.Replace(x => x.DataVersion, model.DataVersion);
            patch.Replace(x => x.JSON, model.JSON);
            patch.Replace(x => x.LifecycleId, model.LifecycleId);
            patch.Replace(x => x.Name, model.Name);
            patch.Replace(x => x.ProjectId, model.ProjectId);
            patch.Replace(x => x.TenantTags, model.TenantTags);
            return(patch);
        }
예제 #2
0
        public virtual ApiChannelRequestModel MapResponseToRequest(
            ApiChannelResponseModel response)
        {
            var request = new ApiChannelRequestModel();

            request.SetProperties(
                response.DataVersion,
                response.JSON,
                response.LifecycleId,
                response.Name,
                response.ProjectId,
                response.TenantTags);
            return(request);
        }
예제 #3
0
        public virtual ApiChannelResponseModel MapRequestToResponse(
            string id,
            ApiChannelRequestModel request)
        {
            var response = new ApiChannelResponseModel();

            response.SetProperties(id,
                                   request.DataVersion,
                                   request.JSON,
                                   request.LifecycleId,
                                   request.Name,
                                   request.ProjectId,
                                   request.TenantTags);
            return(response);
        }