using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TheButcherShopContracts.BusinessLogicContracts; using TheButcherShopContracts.DataModels; namespace ButcherShopBusinessLogic.Implementations; internal class SalaryBusinessLogicContract : ISalaryBusinessLogicContract { public List GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate) { return []; } public List GetAllSalariesByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId) { return []; } public void CalculateSalaryByMounth(DateTime date) { } }