예제 #1
0
 /// <summary>
 /// Initializes a new instance of the AidResponding class
 /// </summary>
 /// <param name="ap">Approved Status</param>
 public AidResponding(bool ap)
 {
     Approved           = ap;
     Resources          = new RespondingResource();
     ContactInformation = new ContactInformation();
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the AidResponding class
 /// </summary>
 /// <param name="ap">Approved Status</param>
 /// <param name="r">Responding Resource object</param>
 /// <param name="ci">Contact Information</param>
 public AidResponding(bool ap, RespondingResource r, ContactInformation ci)
 {
     Approved           = ap;
     Resources          = r;
     ContactInformation = ci;
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the AidResponding class
 /// </summary>
 public AidResponding()
 {
     Resources          = new RespondingResource();
     ContactInformation = new ContactInformation();
 }