using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using webapi.Domain.AggregatesModel.FlatAggregate; using webapi.Domain.AggregatesModel.FlatMappingAggregate; namespace webapi.core { public interface IFlatManager { Task ImportFlat(string flatTitle, string pmsCondoName, string taloyhtioCondoUrl); Task AddFlat(string flatTitle, Guid taloyhtioPMCId, Guid? taloyhtioCondoId, string pmsCondoName, Guid? userId = null); Task AddCondoMapping(string pmsCondoName, Guid taloyhtioPMCId, Guid taloyhtioCondoId); } }