Design Pattern Framework 3.5
ActionService Class
Patterns-In-Action! Application ► ActionService.ServiceImplementations ► ActionService
Main facade into Patterns in Action application

C# | Visual Basic |
public class ActionService : IActionService
Public Class ActionService _ Implements IActionService

All Members | Constructors | Methods | |||
|
|
|
Icon | Member | Description |
---|---|---|
![]() |
ActionService()()() |
Initializes a new instance of the ActionService class
|
![]() |
Equals(Object) | (Inherited from Object.) |
![]() |
Finalize()()() |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) |
![]() |
GetCart(CartRequest) |
Request shopping cart.
|
![]() |
GetCustomers(CustomerRequest) |
Request customer data.
|
![]() |
GetHashCode()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) |
![]() |
GetOrders(OrderRequest) |
Request order data.
|
![]() |
GetProducts(ProductRequest) |
Requests product data.
|
![]() |
GetToken(TokenRequest) |
Gets unique session based token that is valid for the duration of the session.
|
![]() |
GetType()()() |
Gets the Type of the current instance.
(Inherited from Object.) |
![]() |
Login(LoginRequest) |
Login to application service.
|
![]() |
Logout(LogoutRequest) |
Logout from application service.
|
![]() |
MemberwiseClone()()() |
Creates a shallow copy of the current Object.
(Inherited from Object.) |
![]() |
SetCart(CartRequest) |
Sets (add, edit, delete) shopping cart data.
|
![]() |
SetCustomers(CustomerRequest) |
Set (add, update, delete) customer value.
|
![]() |
SetOrders(OrderRequest) |
|
![]() |
SetProducts(ProductRequest) |
|
![]() |
ToString()()() | (Inherited from Object.) |

The Cloud Facade Pattern.

Object | |
![]() |
ActionService |