using System; using System.Threading.Tasks; namespace Win_in.Sfs.Basedata.Application.Contracts; public interface IInterfaceCalendarAppService : ISfsBaseDataAppServiceBase { Task GetActiveDateAsync(DateTime clockNow); Task GetByTimeAsync(DateTime time); }