using NorthBridgeContract.DataModels; namespace NorthBridgeContract.BusinessLogicsContracts; public interface ISalaryBusinessLogicContract { List GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate); List GetAllSalariesByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId); void CalculateSalaryByMounth(DateTime date); }