27 lines
687 B
C#
27 lines
687 B
C#
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<SalaryDataModel> GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public List<SalaryDataModel> GetAllSalariesByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public void CalculateSalaryByMounth(DateTime date)
|
|
{
|
|
}
|
|
}
|