forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
18 lines
519 B
C#
18 lines
519 B
C#
using MagicCarpetContracts.DataModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.BuisnessLogicContracts;
|
|
|
|
internal interface ISalaryBusinessLogicContract
|
|
{
|
|
List<SalaryDataModel> GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate);
|
|
|
|
List<SalaryDataModel> GetAllSalariesByPeriodByEmployee(DateTime fromDate, DateTime toDate, string employeeId);
|
|
|
|
void CalculateSalaryByMounth(DateTime date);
|
|
}
|