Click or drag to resize
ISiteManager Interface

[This is preliminary documentation and is subject to change.]

Manages sites

Namespace: Netadmin.Management.Site
Assembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntax
public interface ISiteManager : IManager<ISite>, 
	ICruddable<ISite>, ICreateable<ISite>, IDetailsable<ISite>, 
	IUpdateable<ISite>, IDeletable<ISite>, IGetAllable<ISite>, 
	IDetailsableBatch<ISite>, ITop100ForCompany<ISite>

The ISiteManager type exposes the following members.

Methods
  ReturnsNameDescription
Public methodInt64Create(T)
Creates a new instance of the entity
(Inherited from ICreateable<T>.)
Public method void Delete(Int64)
Deletes an entity with a specific Id
(Inherited from IDeletable<T>.)
Public methodISiteDetails(Int64)
Get details for entity with specified Id
(Inherited from IDetailsable<T>.)
Public methodIReadOnlyDictionary<TKey, TValue>, T: Int64DetailsAny(IEnumerable<Int64>)
Attempts to get details on multiple ids. If an id is not found, it will not be included in the returned dictionary
(Inherited from IDetailsableBatch<T>.)
Public methodIEnumerable<T>GetAll()
Retrieves every entity
(Inherited from IGetAllable<T>.)
Public methodIReadOnlyDictionary<TKey, TValue>, T: StringGetTop100(Expression<Func<T, String>>, String, IEnumerable<Int64>)
Retrieves the first 100 matches of the search string. For each string, a maximum of 100 ids are returned. Please see the interface for the manager for documentation on supported properties and additional information
(Inherited from ITop100ForCompany<T>.)
Public method void Update(T)
Updates an entity with new values.
(Inherited from IUpdateable<T>.)
Top
Extension Methods
  ReturnsNameDescription
Public Extension MethodISiteDetailsAll<ISite>(Int64)Overloaded. (Defined by DetailsableBatchExtensions.)
Public Extension MethodIReadOnlyDictionary<TKey, TValue>, T: Int64DetailsAll<ISite>(IEnumerable<Int64>)Overloaded. (Defined by DetailsableBatchExtensions.)
Public Extension MethodISiteDetailsAny<ISite>(Int64) (Defined by DetailsableBatchExtensions.)
Top
Remarks
Supported Top100 properties: * Name * StreetName
See Also