Esempio n. 1
0
 private Bug(long Id, String Title, String Comment, BugLocation location)
 {
     this.Title    = Title;
     this.Comment  = Comment;
     this.Id       = Id;
     this.Location = location;
 }
Esempio n. 2
0
 /// <summary>
 /// gets defaulted user based on location
 /// </summary>
 /// <returns>defaulted user to attend this bug</returns>
 public static User GetDefaultedUser(BugLocation location)
 {
     return(null);
 }