Exemplo n.º 1
0
 public ActionResult Create(Privacy p)
 {
     try
     {
         // TODO: Add insert logic here
         p.Insert();
         return(RedirectToAction("Index"));
     }
     catch { return(View(p)); }
 }
Exemplo n.º 2
0
        public void Insert()
        {
            Privacy privacy = new Privacy()
            {
                Description = "Test"
            };

            int rowsInserted = privacy.Insert();

            Assert.IsTrue(rowsInserted == 1);
        }