NewGaoKaoApi/New_College.IServices/ITest_CycleTimeInfoServices.cs

15 lines
322 B
C#

using New_College.IServices.BASE;
using New_College.Model.Models;
using System.Threading.Tasks;
namespace New_College.IServices
{
/// <summary>
/// ITest_CycleTimeInfoServices
/// </summary>
public interface ITest_CycleTimeInfoServices :IBaseServices<Test_CycleTimeInfo>
{
Task<bool> AutoCycleTime();
}
}