示例#1
0
 /// <summary>
 /// Is my user permitted to work on this voting venue?
 /// </summary>
 /// <param name="v"></param>
 /// <param name="msg"></param>
 /// <returns></returns>
 public bool PermittedToWorkHere(VotingVenue v, string msg = "You can't perform this action, as you don't work in the right voting venue, or have global access")
 {
     return(_user.WorksHere(v) || this.ActionPermitted(SystemAction.AllVotingPlaces));
 }