Files
Backend-Api/Company.Domain/YearlysSalaryTitleAgg/IYearlySalaryTitleRepository.cs
2024-07-05 21:36:15 +03:30

12 lines
386 B
C#

using System.Collections.Generic;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.YearlySalaryTitles;
namespace Company.Domain.YearlysSalaryTitleAgg;
public interface IYearlySalaryTitleRepository : IRepository<long, YearlySalaryTitle>
{
EditTitle GetDetails(long id);
List<string> GetLast();
List<TitleViewModel> Search(TitleSearchModel searchModel);
}