コード例 #1
0
 public void NUnit_Contract_Domain_Remove()
 {
     Cat_OrgStructureServices service = new Cat_OrgStructureServices();
     int rs = 0;
     var model = new Cat_OrgStructure { Id = 3 };
     bool result = service.DeleteCatOrgStructure(model.Id);
     NUnit.Framework.Assert.IsTrue(result);
     if (result == true)
     {
         rs += 1;
         Console.WriteLine("Process Success >>> Remove >>> " + model.Id);
     }
 }