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