18 lines
522 B
C#
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);
|
|
}
|