Exemplo n.º 1
0
 /// <summary>
 /// Deletes the specified restriction.
 /// </summary>
 /// <param name="restrictionId">The restriction's identifier.</param>
 /// <returns></returns>
 public BranchRestriction DeleteBranchRestriction(int restrictionId)
 {
     return(_repositoriesEndPoint.DeleteBranchRestriction(_accountName, _slug, restrictionId));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Deletes the specified restriction.
 /// </summary>
 /// <param name="restrictionId">The restriction's identifier.</param>
 /// <returns></returns>
 public object DeleteBranchRestriction(int restrictionId)
 {
     return(_repositoriesEndPoint.DeleteBranchRestriction(_accountName, _repository, restrictionId));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Deletes the specified restriction.
 /// </summary>
 /// <param name="restrictionId">The restriction's identifier.</param>
 /// <returns></returns>
 public void DeleteBranchRestriction(int restrictionId)
 {
     _repositoriesEndPoint.DeleteBranchRestriction(_accountName, _slug, restrictionId);
 }