20 lines
337 B
C#
20 lines
337 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BITKit
|
|||
|
{
|
|||
|
public interface IProvider
|
|||
|
{
|
|||
|
void Get<T>() { }
|
|||
|
void Set<T>(T t) { }
|
|||
|
}
|
|||
|
public interface IProvider<T> : IProvider
|
|||
|
{
|
|||
|
T Get();
|
|||
|
void Set(T t);
|
|||
|
}
|
|||
|
}
|