IInspectionService.cs 191 B

12345678
  1. using Blue;
  2. public interface IInspectionService : IService
  3. {
  4. InspectionInfo InspectionInfo { get; }
  5. void Get();
  6. void Set(int ItemID,bool Normal,string Label,int InspectionId);
  7. }