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

13 lines
462 B
C#

using System.Collections.Generic;
using _0_Framework_b.Domain;
using CompanyManagment.App.Contracts.TaxJobCategory;
namespace Company.Domain.TaxJobCategoryAgg;
public interface ITaxJobCategoryRepository : IRepository<long, TaxJobCategory>
{
TaxJobCategoryViewModel GetTaxJobCategoryByCode(string jobCategoryCode);
TaxJobCategoryViewModel GetTaxJobCategoryByName(string jobCategoryName);
List<TaxJobCategoryViewModel> GetAllTaxJobCategories();
}