/// <summary>
 /// Constructor that instantiates a new controller.
 /// </summary>
 /// <param name="rankCheckService">Service that performs the rank checking logic.</param>
 public RankCheckRequestSearchEntriesController(IRankCheckService rankCheckService)
 {
     _rankCheckService = rankCheckService;
 }
Esempio n. 2
0
 /// <summary>
 /// Constructor that instantiates a new controller.
 /// </summary>
 /// <param name="rankCheckService">Service that performs the rank checking logic.</param>
 public RankCheckRequestsController(IRankCheckService rankCheckService)
 {
     _rankCheckService = rankCheckService;
 }