24 lines
562 B
C#
Raw Normal View History

2024-08-13 09:01:48 +08:00
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;
2024-08-13 09:01:48 +08:00
namespace DOAN.Service.MES.group.IService
{
public interface ISkillMatrixService
{
2024-08-13 09:56:17 +08:00
List<GroupSchedule> GetAllGroups(DateTime date);
2024-08-13 09:01:48 +08:00
List<BaseWorkRoute> GetAllRoutes();
2024-08-13 09:56:17 +08:00
2024-08-14 11:31:49 +08:00
List<GroupPerson> GetPersonsList(string group_schedule_id);
HandleSkillInfoDto GetSkillsDetailofPepole(HandleSkillQueryDto parm);
2024-08-13 09:01:48 +08:00
}
}