2025-02-18 11:43:34 +03:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using PapaCarloContracts.BusinessLogicContracts;
|
2025-02-17 14:16:47 +03:00
|
|
|
|
using PapaCarloContracts.DataModels;
|
2025-02-18 11:43:34 +03:00
|
|
|
|
using PapaCarloContracts.StoragesContracts;
|
2025-02-17 14:16:47 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PapaCarloBusinessLogic.Implementations;
|
|
|
|
|
|
2025-02-18 11:43:34 +03:00
|
|
|
|
internal class SalaryBusinessLogicContract(ISalaryStorageContract salaryStorageContract, ILogger logger) : ISalaryBusinessLogicContract
|
2025-02-17 14:16:47 +03:00
|
|
|
|
{
|
|
|
|
|
public void CalculateSalaryByMounth(DateTime date)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<SalaryDataModel> GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate)
|
|
|
|
|
{
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<SalaryDataModel> GetAllSalariesByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId)
|
|
|
|
|
{
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
}
|