Interface ICaseFieldService
Payroll case field service
Inherited Members
Namespace: PayrollEngine.Client.Service
Assembly: PayrollEngine.Client.Core.dll
Syntax
public interface ICaseFieldService : ICrudService<ICaseField, CaseServiceContext, Query>, ICreateService<ICaseField, CaseServiceContext, Query>, IReadService<ICaseField, CaseServiceContext, Query>
Methods
GetAsync<T>(CaseServiceContext, string)
Get case field by name
Declaration
Task<T> GetAsync<T>(CaseServiceContext context, string name) where T : class, ICaseField
Parameters
| Type | Name | Description |
|---|---|---|
| CaseServiceContext | context | The service context |
| string | name | The case field identifier |
Returns
| Type | Description |
|---|---|
| Task<T> | The case field, null if missing |
Type Parameters
| Name | Description |
|---|---|
| T |