20 lines
426 B
C#
20 lines
426 B
C#
using DOAN.Model.MES.base_;
|
|
using DOAN.Model.MES.product;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.Mobile.IService
|
|
{
|
|
public interface IPreparationTaskService
|
|
{
|
|
|
|
List<BaseWorkRoute> GetLines(DateTime HandleDate);
|
|
|
|
List<ProWorkorder> GetWorkOrderList(DateTime HandleDate, string route_code);
|
|
|
|
}
|
|
}
|