Example #1
0
        public void NUnit_WorkHistory_Domain_Delete()
        {
            Hre_WorkHistoryServices service = new Hre_WorkHistoryServices();
            int rs    = 0;
            var model = new Hre_WorkHistory {
                Id = 58
            };
            string result = service.Delete <Hre_WorkHistoryEntity>(model.Id);

            if (result != string.Empty)
            {
                rs += 1;
                Console.WriteLine("Process Success >>> Delete >>> " + model.Id);
            }
        }
 public void NUnit_WorkHistory_Domain_Delete()
 {
     Hre_WorkHistoryServices service = new Hre_WorkHistoryServices();
     int rs = 0;
     var model = new Hre_WorkHistory { Id = 58 };
     string result = service.Delete<Hre_WorkHistoryEntity>(model.Id);
     if (result != string.Empty)
     {
         rs += 1;
         Console.WriteLine("Process Success >>> Delete >>> " + model.Id);
     }
 }