Click or drag to resize
ISoftwareVersionManager Interface

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

Manages software versions

Namespace: Netadmin.Management.Inventory
Assembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntax
public interface ISoftwareVersionManager : IManager<ISoftwareVersion>, 
	ICruddable<ISoftwareVersion>, ICreateable<ISoftwareVersion>, IDetailsable<ISoftwareVersion>, 
	IUpdateable<ISoftwareVersion>, IDeletable<ISoftwareVersion>, IUniqueName<ISoftwareVersion>, 
	ICruddableBatch<ISoftwareVersion>, ICreateableBatch<ISoftwareVersion>, IDetailsableBatch<ISoftwareVersion>, 
	IUpdateableBatch<ISoftwareVersion>, IDeletableBatch<ISoftwareVersion>, IGetAllable<ISoftwareVersion>, 
	IUniqueEntities<ISoftwareVersion>

The ISoftwareVersionManager type exposes the following members.

Methods
  NameDescription
Public methodInt64Create(T)
Creates a new instance of the entity
(Inherited from ICreateableT.)
Public methodIEnumerableTCreate(IEnumerableT)
Creates multiple entities in one operation
(Inherited from ICreateableBatchT.)
Public method void Delete(Int64)
Deletes an entity with a specific Id
(Inherited from IDeletableT.)
Public method void Delete(IEnumerableInt64)
Deletes multiple entities in one operation
(Inherited from IDeletableBatchT.)
Public methodISoftwareVersionDetails(Int64)
Get details for entity with specified Id
(Inherited from IDetailsableT.)
Public methodIReadOnlyDictionaryTKey, TValue, T: Int64DetailsAny(IEnumerableInt64)
Attempts to get details on multiple ids. If an id is not found, it will not be included in the returned dictionary
(Inherited from IDetailsableBatchT.)
Public methodIEnumerableTGetAll
Retrieves every entity
(Inherited from IGetAllableT.)
Public methodIEnumerableT, T: ISoftwareVersionGetAll(Int64)
Retrieves all software versions for a specific software
Public methodIEnumerableT, T: ISoftwareVersionGetAll(String)
Get all software version based on the software name
Public methodIEnumerableTGetDuplicates(IEnumerableT)
Returns duplicate entities.
(Inherited from IUniqueEntitiesT.)
Public methodIEnumerableTGetUniqueByEntity(IEnumerableT)
Attempts to get entities by what makes them unique. If a match is found the entity is loaded and returned
(Inherited from IUniqueEntitiesT.)
Public methodBooleanIsNameUnique(T)
Checks if the name of a dto is unique
(Inherited from IUniqueNameT.)
Public method void ReArrangeVersions(IEnumerableISoftwareVersion)
Rearranges versions of a software
Public method void Update(T)
Updates an entity with new values.
(Inherited from IUpdateableT.)
Public method void Update(IEnumerableT)
Updates multiple entities in one operation
(Inherited from IUpdateableBatchT.)
Top
Extension Methods
  NameDescription
Public Extension MethodISoftwareVersionCreateISoftwareVersion(ISoftwareVersion) (Defined by CreateableBatchExtensions.)
Public Extension Method void DeleteISoftwareVersion(Int64) (Defined by DeletableBatchExtensions.)
Public Extension MethodISoftwareVersionDetailsAllISoftwareVersion(Int64)Overloaded. (Defined by DetailsableBatchExtensions.)
Public Extension MethodIReadOnlyDictionaryTKey, TValue, T: Int64DetailsAllISoftwareVersion(IEnumerableInt64)Overloaded. (Defined by DetailsableBatchExtensions.)
Public Extension MethodISoftwareVersionDetailsAnyISoftwareVersion(Int64) (Defined by DetailsableBatchExtensions.)
Public Extension Method void UpdateISoftwareVersion(ISoftwareVersion) (Defined by UpdateableBatchExtensions.)
Top
See Also