Files
Backend-Api/CompanyManagment.App.Contracts/TaxJobCategory/ITaxJobCategoryApplication.cs
2024-07-05 21:36:15 +03:30

10 lines
357 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.TaxJobCategory;
public interface ITaxJobCategoryApplication
{
TaxJobCategoryViewModel GetTaxJobCategoryByCode(string jobCategoryCode);
TaxJobCategoryViewModel GetTaxJobCategoryByName(string jobCategoryName);
List<TaxJobCategoryViewModel> GetAllTaxJobCategories();
}