21 lines
730 B
C#
21 lines
730 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Taloyhtio.GeneralApi.Core.Entities;
|
|
|
|
namespace GeneralApi.Core.Repositories
|
|
{
|
|
public interface ICondoRepository : IRepository<Condo, int>
|
|
{
|
|
Condo GetByBusinessId(string businessId);
|
|
//Condo GetByBusinessIdAndPMC(string businessId, string businessIdPMC);
|
|
Condo GetByOfficialName(string officialName);
|
|
//Condo GetByOfficialNameAndPMC(string officialName, string businessIdPMC);
|
|
//bool ExistsByBusinessIdAndPMC(string businessId, string businessIdPMC);
|
|
List<Condo> GetByWebId(Guid webId);
|
|
Condo GetFirstByWebId(Guid webId);
|
|
//bool ExistsByWebId(Guid webId);
|
|
}
|
|
}
|