public static void CreateFeedbackFormRequest(FeedbackForm form)
 {
     if (form == null)
     {
         throw new NotImplementedException();
     }
     Provider.CreateFeedbackFormRequest(form);
 }
 public override void CreateFeedbackFormRequest(FeedbackForm form)
 {
     using (var transaction = new TransactionScope(_configuration))
     {
         FeedbackFormDataStore ffDS = new FeedbackFormDataStore(transaction);
         ffDS.Insert(form);
         transaction.Commit();
     }
 }
示例#3
0
 public abstract void CreateFeedbackFormRequest(FeedbackForm form);