using System; using System.Collections.Generic; using _0_Framework.Domain; using CompanyManagment.App.Contracts.MandantoryHours; namespace Company.Domain.MandatoryHoursAgg; public interface IMandatoryHoursRepository :IRepository { List GetMandatoryHours(); EditMandatoryHours GetDetails(long id); EditMandatoryHours GetByYear(int year); FridayAndMondatoryDayVeiwModel GetMondatoryDays(DateTime startDate, DateTime endDate); List Search(MandatoryHoursSearchModel searchModel); List PrintAll(MandatoryHoursSearchModel searchModel); }