using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BITKit { public interface IProvider { void Get() { } void Set(T t) { } } public interface IProvider : IProvider { T Get(); void Set(T t); } }