コード例 #1
0
        public async Task <HttpResponseMessage> Patch(int id, object ticket)
        {
            var result = await _apiClient.Patch($"&id={id}", ticket);

            return(result);
        }
コード例 #2
0
        public async Task <HttpResponseMessage> Patch(string name, TimeAgreement timeAgreement)
        {
            var result = await _client.Patch($"&name={name}", timeAgreement);

            return(result);
        }
コード例 #3
0
        public async Task <HttpResponseMessage> Patch(string id, Person person)
        {
            var result = await _apiClient.Patch($"&id={id}", person);

            return(result);
        }
コード例 #4
0
        public async Task <HttpResponseMessage> Patch(int id, Service service)
        {
            var result = await _apiClient.Patch($"&id={id}", service);

            return(result);
        }