14 lines
601 B
C#
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);
|
|
} |