AIsOfCatan.Trade.Respond C# (CSharp) Метод

Respond() публичный Метод

public Respond ( List give, List take ) : ITrade
give List
take List
Результат ITrade
        public ITrade Respond(List<Resource> give, List<Resource> take)
        {
            return new Trade(new List<List<Resource>> {give}, new List<List<Resource>> {take})
                {
                    Status = TradeStatus.Countered
                };
        }