13 lines
462 B
C#
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();
|
|
} |