1 2 3 4 5 6 7 8 9 10 11 12
using System.Collections; namespace MoMoney.DataAccess.Transactions { public interface IKey<T> { bool is_found_in(IDictionary items); T parse_from(IDictionary items); void remove_from(IDictionary items); void add_value_to(IDictionary items, T value); } }