/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repository">The repositories these invitations belong to</param>
 public InvitationController(Client client, RepositoryController repository)
     : base(client)
 {
     Repository = repository;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repository">The repositories these invitations belong to</param>
 public InvitationController(Client client, RepositoryController repository)
     : base(client)
 {
     Repository = repository;
 }
Example #3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repository">The repository the issues belong to</param>
 public IssuesController(Client client, RepositoryController repository) : base(client)
 {
     Repository = repository;
 }
Example #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client"></param>
 /// <param name="repository"></param>
 public WikisController(Client client, RepositoryController repository)
     : base(client)
 {
     Repository = repository;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client"></param>
 /// <param name="repository"></param>
 /// <param name="node"></param>
 public ChangesetController(Client client, RepositoryController repository, string node)
     : base(client)
 {
     Repository = repository;
     Node = node;
 }
Example #6
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repository">The repository this issue belongs to</param>
 /// <param name="id">The id of this issue</param>
 public IssueController(Client client, RepositoryController repository, int id)
     : base(client)
 {
     Id         = id;
     Repository = repository;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repo">The repository the branch belongs to</param>
 public BranchesController(Client client, RepositoryController repo)
     : base(client)
 {
     Repository = repo;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repository">The repository these changesets belongs to</param>
 public ChangesetsController(Client client, RepositoryController repository)
     : base(client)
 {
     Repository = repository;
 }
Example #9
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repository">The repository these changesets belongs to</param>
 public ChangesetsController(Client client, RepositoryController repository)
     : base(client)
 {
     Repository = repository;
 }
Example #10
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client"></param>
 /// <param name="repository"></param>
 /// <param name="node"></param>
 public ChangesetController(Client client, RepositoryController repository, string node)
     : base(client)
 {
     Repository = repository;
     Node       = node;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repository">The repository this issue belongs to</param>
 /// <param name="id">The id of this issue</param>
 public IssueController(Client client, RepositoryController repository, int id)
     : base(client)
 {
     Id = id;
     Repository = repository;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="repo">The user privileges object</param>
 /// <param name="client">A handle to the client</param>
 public RepositoryGroupPrivilegeController(Client client, RepositoryController repo)
     : base(client)
 {
     Repo = repo;
 }
Example #13
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repo">The repository the branch belongs to</param>
 public PullRequestsController(Client client, RepositoryController repo) : base(client)
 {
     Repository = repo;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repo">The repository the branch belongs to</param>
 public PullRequestsController(Client client, RepositoryController repo)
     : base(client)
 {
     Repository = repo;
 }
Example #15
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="repo">The repository the branch belongs to</param>
 public BranchesController(Client client, RepositoryController repo) : base(client)
 {
     Repository = repo;
 }