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

            return(result);
        }
        public async Task <HttpResponseMessage> Patch(string name, TimeAgreement timeAgreement)
        {
            var result = await _client.Patch($"&name={name}", timeAgreement);

            return(result);
        }
        public async Task <HttpResponseMessage> Patch(string id, Person person)
        {
            var result = await _apiClient.Patch($"&id={id}", person);

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

            return(result);
        }