C# Class Customers.PCL.Controllers.APIController

Exibir arquivo Open project: EspressoLogicCafe/MobileSampleSDKs

Public Methods

Method Description
DeleteOneCustomersAsync ( string pk ) : Task

Delete one object

GetCustomersAsync ( string filter = null ) : Task

Get zero or more objects from table Customers

GetOneCustomersAsync ( string pk ) : Task

Get one object

PostInsertCustomersAsync ( ) : Task

Insert one or more objects

PutUpdateCustomersAsync ( ) : Task

Update one or more objects

PutUpdateOneCustomersAsync ( string pk ) : Task

Update one object

Method Details

DeleteOneCustomersAsync() public method

Delete one object
public DeleteOneCustomersAsync ( string pk ) : Task
pk string Required parameter: CustomerID
return Task

GetCustomersAsync() public method

Get zero or more objects from table Customers
public GetCustomersAsync ( string filter = null ) : Task
filter string Optional parameter: Arbitrary search criteria
return Task

GetOneCustomersAsync() public method

Get one object
public GetOneCustomersAsync ( string pk ) : Task
pk string Required parameter: CustomerID
return Task

PostInsertCustomersAsync() public method

Insert one or more objects
public PostInsertCustomersAsync ( ) : Task
return Task

PutUpdateCustomersAsync() public method

Update one or more objects
public PutUpdateCustomersAsync ( ) : Task
return Task

PutUpdateOneCustomersAsync() public method

Update one object
public PutUpdateOneCustomersAsync ( string pk ) : Task
pk string Required parameter: CustomerID
return Task