/// <summary> /// Initializes a new instance of the TeamSeasonsControlViewModel class /// </summary> /// <param name="sharedService"></param> /// <param name="controlService"></param> public TeamSeasonsControlViewModel(ISharedService sharedService, ITeamSeasonsControlService controlService) : base(sharedService) { _controlService = controlService; }
public void SetUp() { _sharedService = A.Fake <ISharedService>(); _controlService = A.Fake <ITeamSeasonsControlService>(); }