23 lines
770 B
C#
23 lines
770 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Application;
|
|
using _0_Framework.Domain;
|
|
using CompanyManagment.App.Contracts.PersonalContractingParty;
|
|
using CompanyManagment.App.Contracts.Representative;
|
|
|
|
namespace Company.Domain.RepresentativeAgg;
|
|
|
|
public interface IRepresentativeRepository : IRepository<long, Representative>
|
|
{
|
|
List<RepresentativeViewModel> GetRepresentatives();
|
|
List<PersonalContractingPartyViewModel> GetContractingParties(long id);
|
|
EditRepresentative GetDetails(long id);
|
|
List<RepresentativeViewModel> Search(RepresentativeSearchModel searchModel);
|
|
|
|
#region NewByHeydari
|
|
|
|
List<RepresentativeViewModel> GetRepresentativeListForSearchText(string searchText);
|
|
bool DeleteRepresentative(long id);
|
|
|
|
#endregion
|
|
|
|
} |