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

14 lines
601 B
C#

using System.Collections.Generic;
using _0_Framework.Application;
using CompanyManagment.App.Contracts.TaxLeftWorkItem;
namespace CompanyManagment.App.Contracts.TaxLeftWorkCategory;
public interface ITaxLeftWorkCategoryApplication
{
OperationResult Create(CreateTaxLeftWorkCategory command);
OperationResult Edit(EditTaxLeftWorkCategory command);
EditTaxLeftWorkCategory GetDetails(long id);
List<TaxLeftWorkCategoryViewModel> Search(TaxLeftWorkCategorySearchModel searchModel);
OperationResult TaxLeftWorkItemsCheckError(List<TaxLeftWorkItemViewModel> taxLeftWorkItemList);
}