Example #1
0
        public JsonPatchDocument <ApiPostTypesRequestModel> CreatePatch(ApiPostTypesRequestModel model)
        {
            var patch = new JsonPatchDocument <ApiPostTypesRequestModel>();

            patch.Replace(x => x.Type, model.Type);
            return(patch);
        }
Example #2
0
        public virtual ApiPostTypesRequestModel MapResponseToRequest(
            ApiPostTypesResponseModel response)
        {
            var request = new ApiPostTypesRequestModel();

            request.SetProperties(
                response.Type);
            return(request);
        }
Example #3
0
        public virtual ApiPostTypesResponseModel MapRequestToResponse(
            int id,
            ApiPostTypesRequestModel request)
        {
            var response = new ApiPostTypesResponseModel();

            response.SetProperties(id,
                                   request.Type);
            return(response);
        }