Example #1
0
 public ClientRequest(UserType userType, string sender, ProductInformation senderProductInformation, string featureDescription)
 {
     UserType = userType;
     Sender   = sender;
     SenderProductInformation = senderProductInformation;
     Description = featureDescription;
 }
Example #2
0
 public BugReport(UserType userType, string sender, ProductInformation senderProductInformation, string bugReportText, Exception exception = null, IEnumerable <string> logEntries = null)
     : base(userType, sender, senderProductInformation, bugReportText)
 {
     Exception  = exception.ToDiagnosticString();
     LogEntries = logEntries != null?logEntries.ToArray() : new string[0];
 }
Example #3
0
 public ProductComment(UserType userType, string sender, ProductInformation senderProductInformation, string featureDescription)
     : base(userType, sender, senderProductInformation, featureDescription)
 {
 }
Example #4
0
 public string ProcessString(string str)
 {
     str = ProductInformation.ProcessTokensInString(str);
     str = ProductUsageInformation.ProcessTokensInString(str);
     return(str);
 }
Example #5
0
 public StandardProductInformationServices()
 {
     _productInformation = null;
 }