示例#1
0
        public void NUnit_Relatives_Domain_Delete()
        {
            Hre_RelativesServices service = new Hre_RelativesServices();
            int rs    = 0;
            var model = new Hre_Relatives {
                Id = 3
            };
            string result = service.Delete <Hre_RelativesEntity>(model.Id);

            if (result != string.Empty)
            {
                rs += 1;
                Console.WriteLine("Process Success >>> Delete >>> " + model.Id);
            }
        }
 public void NUnit_Relatives_Domain_Delete()
 {
     Hre_RelativesServices service = new Hre_RelativesServices();
     int rs = 0;
     var model = new Hre_Relatives { Id = 3 };
     string result = service.Delete<Hre_RelativesEntity>(model.Id);
     if (result != string.Empty)
     {
         rs += 1;
         Console.WriteLine("Process Success >>> Delete >>> " + model.Id);
     }
 }