14 lines
371 B
C#
14 lines
371 B
C#
using taloyhtio.idp.parser.common.model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace taloyhtio.idp.parser.common.repository
|
|
{
|
|
interface ICondoMappingRepository
|
|
{
|
|
IEnumerable<CondoMapping> GetMappings(IEnumerable<string> pmsCondosName = null);
|
|
|
|
CondoMapping GetMappingByPMSCondoName(Guid pMCTaloyhtioId, string condoPMS);
|
|
}
|
|
}
|