2025-02-17 12:40:49 +04:00

18 lines
522 B
C#

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