Пример #1
0
 public PersonController(IPersonAwardService _personAwardService)
 {
     this._personAwardService = _personAwardService;
 }
Пример #2
0
 public void Setup()
 {
     this.personAwardService = Substitute.For <IPersonAwardService>();
     this.personController   = new PersonController(this.personAwardService);
     Mapping.CreateConfiguration();
 }