Defines the manager interface for specific object type that is derived from ICartellaObject. All object type managers (e.g. CategoryManager, UserManager) derive from it

Classes inplementing this interface will have access to DataAccess Layer, knows data access manager, can get hold of the default procedures module to locate the ObjectDateProceduresImplementaion during construction.

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public interface ICartellaObjectManager<out T> : IManager
where T : ICartellaObject
Visual Basic
Public Interface ICartellaObjectManager(Of Out T As ICartellaObject) _
	Inherits IManager
Visual C++
generic<typename T>
where T : ICartellaObject
public interface class ICartellaObjectManager : IManager

Type Parameters

T

See Also