11 lines
377 B
C#
11 lines
377 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
using CompanyManagment.App.Contracts.TaxLeftWorkItem;
|
|
|
|
namespace Company.Domain.TaxLeftWorkItemAgg;
|
|
|
|
public interface ITaxLeftWorkItemRepository : IRepository<long, TaxLeftWorkItem>
|
|
{
|
|
EditTaxLeftWorkItem GetDetails(long id);
|
|
List<TaxLeftWorkItemViewModel> Search(TaxLeftWorkItemSerachModel searchModel);
|
|
} |