19 lines
499 B
C#
19 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.Mobile.IService
|
|
{
|
|
public interface IPADPrintAndReportWork2Service
|
|
{
|
|
|
|
string GetFirstInspectionLabel(string workorder);
|
|
|
|
string CheckFirstInspectionLabel(string workorder, string first_label);
|
|
string GetEndInspectionLabel(string workorder);
|
|
string CheckEndInspectionLabel(string workorder, string end_label);
|
|
}
|
|
}
|