using TheCyclopsContracts.BusinessLogicContracts; using TheCyclopsContracts.DataModels; namespace TheCyclopsBusinessLogic.Implementations; internal class SalaryBusinessLogicContract : ISalaryBusinessLogicContract { public List GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate) { return []; } public List GetAllSalariesByPeriodByEmployee(DateTime fromDate, DateTime toDate, string employeeId) { return []; } public void CalculateSalaryByMounth(DateTime date) { } }