Interface IWacListDataService<TFilter, TDto>
Assembly: WaCore.Crud.Contracts.dll
Syntax
public interface IWacListDataService<TFilter, TDto>
Type Parameters
Name |
Description |
TFilter |
|
TDto |
|
Methods
|
Improve this Doc
View Source
Get(Object)
Declaration
Parameters
Type |
Name |
Description |
System.Object |
id |
|
Returns
|
Improve this Doc
View Source
GetAsync(Object)
Declaration
Task<TDto> GetAsync(object id)
Parameters
Type |
Name |
Description |
System.Object |
id |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<TDto> |
|
|
Improve this Doc
View Source
GetList(TFilter)
Declaration
IPagedList<TDto> GetList(TFilter filter)
Parameters
Type |
Name |
Description |
TFilter |
filter |
|
Returns
|
Improve this Doc
View Source
GetListAsync(TFilter)
Declaration
Task<IPagedList<TDto>> GetListAsync(TFilter filter)
Parameters
Type |
Name |
Description |
TFilter |
filter |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<IPagedList<TDto>> |
|