16 lines
354 B
C#
16 lines
354 B
C#
|
|
using DOAN.Model.MES.Andon.Dto;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace DOAN.Service.MES.SmartScreen.Site.IService
|
|||
|
|
{
|
|||
|
|
public interface ISiteSafeGreenCrossSmartService
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public List<SiteSafeGreenCrossDto> GetGeenCrossSmartScreenForMonth();
|
|||
|
|
}
|
|||
|
|
}
|