public void InsertCommentReceivedSummary()
 {
     var context = new SidejobModel.SidejobEntities();
     var customercommentreceivedsummary = new SidejobModel.CustomerCommentReceivedSummary
                                              {
                                                  CustomerID = _nextCustomerID,
                                                  NumberofPositive = 0,
                                                  NumberofNegative = 0,
                                                  NumberofNeutral = 0,
                                                  Total = 0,
                                                  Percentage = 100
                                              };
     context.AddToCustomerCommentReceivedSummaries(customercommentreceivedsummary);
 }