using Diligent.WebAPI.Contracts.DTOs.Schedule; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface IScheduleService { Task<List<ScheduleViewDto>> GetScheduleForCertainPeriod(int month, int year); } }