public JsonPatchDocument <ApiPaymentTypeRequestModel> CreatePatch(ApiPaymentTypeRequestModel model) { var patch = new JsonPatchDocument <ApiPaymentTypeRequestModel>(); patch.Replace(x => x.Name, model.Name); return(patch); }
public virtual ApiPaymentTypeRequestModel MapResponseToRequest( ApiPaymentTypeResponseModel response) { var request = new ApiPaymentTypeRequestModel(); request.SetProperties( response.Name); return(request); }
public virtual ApiPaymentTypeResponseModel MapRequestToResponse( int id, ApiPaymentTypeRequestModel request) { var response = new ApiPaymentTypeResponseModel(); response.SetProperties(id, request.Name); return(response); }