using System; using DOAN.Model; using DOAN.Model.Dto; using DOAN.Model.MES.group; using DOAN.Model.MES.group.Dto; using System.Collections.Generic; using DOAN.Model.MES.base_; using Microsoft.AspNetCore.Mvc; namespace DOAN.Service.MES.group.IService { public interface ISkillMatrixService { //List GetAllGroups(DateTime date); public List GetAllGroups(); List GetAllRoutes(); List GetPersonsList(string group_code); HandleSkillInfoDto GetSkillsDetailofPepole(HandleSkillQueryDto parm); } }