14 lines
273 B
C#
14 lines
273 B
C#
namespace AlicizaX.UI
|
|
{
|
|
public interface IMixedObjectFactory<T> where T : class
|
|
{
|
|
T Create(string typeName);
|
|
|
|
void Destroy(string typeName, T obj);
|
|
|
|
void Reset(string typeName, T obj);
|
|
|
|
bool Validate(string typeName, T obj);
|
|
}
|
|
}
|