Example #1
0
 public PostTask(EventPageActivity activity, string authToken, string comment, string filepath, long eventID)
 {
     System.Console.WriteLine ("PostTask Constructor");
     this.activity = activity;
     this.authtoken = authToken;
     this.comment = comment;
     this.filepath = filepath;
     this.eventID = eventID;
 }
Example #2
0
 public FetchEventTask(EventPageActivity activity, string authToken, long eventID)
 {
     this.activity = activity;
     this.authtoken = authToken;
     this.eventID = eventID;
 }