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

12 lines
419 B
C#

using System.Collections.Generic;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.TaxLeftWorkItem;
public interface ITaxLeftWorkItemApplication
{
OperationResult Create(CreateTaxLeftWorkItem command);
OperationResult Edit(EditTaxLeftWorkItem command);
EditTaxLeftWorkItem GetDetails(long id);
List<TaxLeftWorkItemViewModel> Search(TaxLeftWorkItemSerachModel searchModel);
}