示例#1
0
 /// <summary>
 /// NAME: Austin Gee
 /// DATE: 2/10/2020
 /// CHECKED BY: Thomas Dupuy
 ///
 /// This is the full constructor. It will be used for unit testing purposes
 /// </summary>
 /// <remarks>
 /// UPDATED BY: NA
 /// UPDATE DATE: NA
 /// WHAT WAS CHANGED: NA
 ///
 /// </remarks>
 /// <param name="adoptionAppointmentAccessor"></param>
 public AdoptionAppointmentManager(IAdoptionAppointmentAccessor adoptionAppointmentAccessor)
 {
     _adoptionAppointmentAccessor = adoptionAppointmentAccessor;
 }
 /// <summary>
 /// NAME: Austin Gee
 /// DATE: 2/6/2020
 /// CHECKED BY: Thomas Dupuy
 ///
 /// This is the no-argument constructor for this class.
 /// </summary>
 /// <remarks>
 /// UPDATED BY: NA
 /// UPDATE DATE: NA
 /// WHAT WAS CHANGED: NA
 ///
 /// </remarks>
 public AdoptionAppointmentManagerTests()
 {
     _adoptionAppointmentAccessor = new FakeAdoptionAppointmentAccessor();
 }
示例#3
0
 /// <summary>
 /// NAME: Austin Gee
 /// DATE: 2/10/2020
 /// CHECKED BY: Thomas Dupuy
 ///
 /// This is the no-argument constructor for this class. This will be the constructor
 /// that will typically be used.
 /// </summary>
 /// <remarks>
 /// UPDATED BY: NA
 /// UPDATE DATE: NA
 /// WHAT WAS CHANGED: NA
 ///
 /// </remarks>
 public AdoptionAppointmentManager()
 {
     _adoptionAppointmentAccessor = new AdoptionAppointmentAccessor();
 }