public static void Create (OutboundMail outboundMail, Reporter person, bool asOfficer)
 {
     Create(outboundMail.Identity, person.Identity, asOfficer,(int)RecipientType.Reporter);
 }
Example #2
0
        public int CompareTo(object obj)
        {
            Reporter otherReporter = (Reporter)obj;

            return(this.Name.CompareTo(otherReporter.Name));
        }
Example #3
0
 public void AddRecipient (Reporter person)
 {
     AddReporterRecipient(person.Identity);
 }
Example #4
0
 public static Reporter FromIdentity(int identity)
 {
     return(Reporter.FromBasic(SwarmDb.GetDatabaseForReading().GetReporter(identity)));
 }