Example #1
0
 public Category(string name, int projectId, int tagId, Microsoft.Office.Interop.Outlook.Category outlookCategory)
 {
     this.Name            = name;
     this.ProjectId       = projectId;
     this.TagId           = tagId;
     this.OutlookCategory = outlookCategory;
 }
Example #2
0
 public Category(string name, Microsoft.Office.Interop.Outlook.Category outlookCategory)
 {
     this.Name            = name;
     this.OutlookCategory = outlookCategory;
 }