Exemplo n.º 1
0
 internal UserContext(ServiceClient client)
 {
     this.client = client;
 }
Exemplo n.º 2
0
 internal WebhookContext(ServiceClient client)
 {
     this.client = client;
 }
Exemplo n.º 3
0
 internal SubtaskContext(ServiceClient client)
 {
     this.client = client;
 }
Exemplo n.º 4
0
 public async Task <Positions> GetPositionAsync(uint id, CancellationToken cancellationToken)
 {
     return(await client.GetAsync <Positions>(ServiceClient.BuildCommand("subtask_positions", id), null, cancellationToken).ConfigureAwait(false));
 }
Exemplo n.º 5
0
 internal CommentContext(ServiceClient client)
 {
     this.client = client;
 }
Exemplo n.º 6
0
 public async Task <MainTask> GetAsync(uint id, CancellationToken cancellationToken)
 {
     return(await client.GetAsync <MainTask>(ServiceClient.BuildCommand("tasks", id), null, cancellationToken).ConfigureAwait(false));
 }
Exemplo n.º 7
0
 internal ReminderContext(ServiceClient client)
 {
     this.client = client;
 }
Exemplo n.º 8
0
 internal NoteContext(ServiceClient client)
 {
     this.client = client;
 }
Exemplo n.º 9
0
 public async Task <IEnumerable <Membership> > GetAsync(uint?listId, CancellationToken cancellationToken)
 {
     return(await client.GetAsync <IEnumerable <Membership> >(ServiceClient.BuildCommand("memberships", listId), null, cancellationToken).ConfigureAwait(false));
 }
Exemplo n.º 10
0
 internal MembershipContext(ServiceClient client)
 {
     this.client = client;
 }
Exemplo n.º 11
0
 internal ListContext(ServiceClient client)
 {
     this.client = client;
 }