public void SetUp() { this.mockedPersonsDAO = A.Fake<IPersonsDAO>(); this.personsController = new PersonsController(mockedPersonsDAO); this.mockedPerson = A.Fake<Person>(); }
/// <summary> /// Adds the new person. /// </summary> public void AddNewPerson(Person person) { throw new NotImplementedException(); }
/// <summary> /// Updates the person record. /// </summary> /// <param name="username">The username.</param> /// <exception cref="NotImplementedException"></exception> public void UpdatePersonRecord(int id, Person username) { throw new NotImplementedException(); }
public void UpdatePersonRecord(Person person) { throw new NotImplementedException(); }
public void SetUp() { this.mockedPerson = A.Fake<Person>(); }