ParcelServiceMapperInterface

Extends

Interface ParcelServiceMapperInterface

package

Default

Methods

Deletes a given parcel service.

delete(\ParcelServiceInterface $parcelService) 

Arguments

$parcelService

\ParcelServiceInterface

Fetches all parcel services limited by the pager.

findAll(\Pager|null $pager = null, array $sorters = array()) : \ParcelServiceCollection|null

Arguments

$pager

\Pager|null

(Optional) Pager object with pagination information

$sorters

array

(Optional) array of Sorter objects with data sorting information

Response

\ParcelServiceCollection|null

Fetches all parcel services found by given limited search condition.

findBy(\ParcelServiceSearchCondition $searchCondition, \Pager|null $pager = null, array $sorters = array()) : \ParcelServiceCollection|null

Arguments

$pager

\Pager|null

(Optional) Pager object with pagination information

$sorters

array

(Optional) array of Sorter objects with data sorting information

Response

\ParcelServiceCollection|null

Fetches a parcel service found by given ID.

findById(\ParcelServiceId $parcelServiceId) : \ParcelServiceInterface|null

Arguments

$parcelServiceId

\ParcelServiceId

Response

\ParcelServiceInterface|null

Inserts a given parcel service.

insert(\ParcelServiceInterface $parcelService) : \ParcelServiceInterface

Arguments

$parcelService

\ParcelServiceInterface

Response

\ParcelServiceInterface

Updates a given parcel service.

update(\ParcelServiceInterface $parcelService) : \ParcelServiceInterface

Arguments

$parcelService

\ParcelServiceInterface

Response

\ParcelServiceInterface