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