using taloyhtio.idp.parser.common.model; using System; using System.Collections.Generic; namespace taloyhtio.idp.parser.common.repository { interface ICondoMappingRepository { IEnumerable GetMappings(IEnumerable pmsCondosName = null); CondoMapping GetMappingByPMSCondoName(Guid pMCTaloyhtioId, string condoPMS); } }