public void Invoke(OldAccount a, OrikivoCommandContext Context)
 {
     DoAction(a, Context);
 }
Exemple #2
0
        // make a proper flag system...?
        public void Flag(OldAccount writer, Letter l, string reason)
        {
            LetterReport lr = new LetterReport(writer, l, reason);

            Reports.Add(lr);
        }
Exemple #3
0
 public LetterReport(OldAccount a, Letter letter, string reason) : base(letter, reason)
 {
     Author = new Author(a);
 }
Exemple #4
0
 public Author(OldAccount a)
 {
     Id   = a.Id;
     Name = a.GetDefaultName();
 }