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