Interface IRewardService
This IService handles the loading and provides convenient way to fetch any IReward
Assembly: cs.temp.dll.dll
Syntax
public interface IRewardService : IService
Methods
GetAllRewards<TReward>()
Declaration
TReward[] GetAllRewards<TReward>()
where TReward : IReward
Returns
Type |
Description |
TReward[] |
|
Type Parameters
GetReward<TReward>(String)
Returns the TReward
controller associated with the id
Declaration
TReward GetReward<TReward>(string id)
where TReward : IReward
Parameters
Type |
Name |
Description |
String |
id |
|
Returns
Type Parameters
GetRewards<TReward>(String[])
Returns the TReward
controller associated with the ids
.
Declaration
TReward[] GetRewards<TReward>(string[] ids)
where TReward : IReward
Parameters
Type |
Name |
Description |
String[] |
ids |
|
Returns
Type |
Description |
TReward[] |
|
Type Parameters