public void AddComment(int bugId, string commentText, string createDate, string ownerEmail)
		{
			var comment = new long_desc {thetext = commentText, bug_when = createDate, who = ownerEmail};
			ObjectFactory.GetInstance<BugzillaServiceMock>().Bugs.AddComment(bugId, comment);
		}
		public void Insert(int index, long_desc obj)
		{
			base.Insert(index, obj);
		}
		public void Remove(long_desc obj)
		{
			base.Remove(obj);
		}
		public long_desc Add(long_desc obj)
		{
			base.Add(obj);
			return obj;
		}
 public void Remove(long_desc obj)
 {
     base.Remove(obj);
 }
 public void Insert(int index, long_desc obj)
 {
     base.Insert(index, obj);
 }
 public long_desc Add(long_desc obj)
 {
     base.Add(obj);
     return(obj);
 }
		public BugzillaComment(long_desc comment)
		{
			Body = comment.thetext;
			Author = comment.who;
			DateAdded = comment.bug_when;
		}