protected string GetAgentName(BL.RealtyEntities.Agent agent) { return($"{agent.FirstName}\n{agent.Patronym}"); }
protected (string phone1, string phone2) GetAgentPhones(BL.RealtyEntities.Agent agent) { return(agent.MobilePhone, agent.MobilePhone2); }