public async Task UpdateEpic() { var client = CreateClient(); var e = new EpicUpdate { Id = 22, Name = "new epic name #2", State = EpicState.InProgress }; await client.Epics.Update(e); }
public Task <Epic> Update(EpicUpdate model) { return(base.Update(model)); }