Exemplo n.º 1
0
 public void SetUp()
 {
     _sharedService  = A.Fake <ISharedService>();
     _controlService = A.Fake <IRankingsControlService>();
 }
 /// <summary>
 /// Initializes a new instance of the RankingsControlViewModel class
 /// </summary>
 /// <param name="sharedService"></param>
 /// <param name="controlService"></param>
 public RankingsControlViewModel(ISharedService sharedService, IRankingsControlService controlService)
     : base(sharedService)
 {
     _controlService = controlService;
 }