IRemoveValidate.cs 220 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CZFW.Framework.Interface.Base
  5. {
  6. public interface IRemoveValidate
  7. {
  8. (bool result, string message) Validate(int id);
  9. }
  10. }