C# Class JetstreamLaunchpad.DAL.DBItem

Inheritance: TersoConnectEntity, IDisposable
Afficher le fichier Open project: tersosolutions/JetstreamSDK-.NET_Launchpad Class Usage Examples

Méthodes publiques

Méthode Description
DeleteItem ( int itemId ) : void

Method to delete item

Dispose ( ) : void

Function is used to dispose unused objects.

GetFilterItemList ( string searchText ) : List

Method to get the item list by search text filter

GetItemByItemId ( int itemId ) : ItemModel

Method to get item by itemid

GetItemList ( ) : IEnumerable

Method to get item list

GetItemModelByEpc ( ItemModel itemMl ) : int

Get Item by EPC

GetItemsList ( string searchText, int pageNumber, int pageSize ) : List

Method to get the item list by paze number and page size for server side paging

SaveItem ( ItemModel itemMl ) : int

Method to save item

UpdateItem ( ItemModel itemMl ) : int

Method to update item

Private Methods

Méthode Description
Dispose ( bool disposing ) : void

Dispose(bool disposing) executes in two distinct scenarios. If disposing equals true, it will dispose managed and unmanaged resources. If disposing equals false, only unmanaged resources can be disposed.

Method Details

DeleteItem() public méthode

Method to delete item
public DeleteItem ( int itemId ) : void
itemId int
Résultat void

Dispose() public méthode

Function is used to dispose unused objects.
public Dispose ( ) : void
Résultat void

GetFilterItemList() public méthode

Method to get the item list by search text filter
public GetFilterItemList ( string searchText ) : List
searchText string
Résultat List

GetItemByItemId() public méthode

Method to get item by itemid
public GetItemByItemId ( int itemId ) : ItemModel
itemId int
Résultat JetstreamLaunchpad.Entity.ItemModel

GetItemList() public méthode

Method to get item list
public GetItemList ( ) : IEnumerable
Résultat IEnumerable

GetItemModelByEpc() public méthode

Get Item by EPC
public GetItemModelByEpc ( ItemModel itemMl ) : int
itemMl JetstreamLaunchpad.Entity.ItemModel
Résultat int

GetItemsList() public méthode

Method to get the item list by paze number and page size for server side paging
public GetItemsList ( string searchText, int pageNumber, int pageSize ) : List
searchText string
pageNumber int
pageSize int
Résultat List

SaveItem() public méthode

Method to save item
public SaveItem ( ItemModel itemMl ) : int
itemMl JetstreamLaunchpad.Entity.ItemModel
Résultat int

UpdateItem() public méthode

Method to update item
public UpdateItem ( ItemModel itemMl ) : int
itemMl JetstreamLaunchpad.Entity.ItemModel
Résultat int