using DOAN.Model.Mobile.Dto; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Service.Mobile.IService { public interface IPADPrintAndReportWorkService { bool InspectionBoxLabel(string box_label, string workorder); bool InspectionProductLabel(string product_label, string workorder); int BoxLabelAndProductLabel(BoxLabelAndProductLabelDto boxLabelAndProductLabelDto); } }