using PapaCarloContracts.DataModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PapaCarloContracts.BusinessLogicContracts; public interface ISalaryBusinessLogicContract { List GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate); List GetAllSalariesByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId); void CalculateSalaryByMounth(DateTime date); }