using Abp.Application.Services; using VberZero.AppService.Base.Dto; using VberZero.AppService.Calendars.Dto; namespace VberZero.AppService.Calendars; public interface ICalendarAppServiceBase : IApplicationService { Task> GetAll(VzPagedRequestDto input); Task> GetNotStartList(); Task Get(int id); Task Create(CreateCalendarDto input); Task Update(UpdateCalendarDto input); Task Delete(int id); }