-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPayrollEngine.Backend.Controller.xml
More file actions
3155 lines (3155 loc) · 181 KB
/
Copy pathPayrollEngine.Backend.Controller.xml
File metadata and controls
3155 lines (3155 loc) · 181 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>PayrollEngine.Backend.Controller</name>
</assembly>
<members>
<member name="T:PayrollEngine.Backend.Controller.AdminController">
<summary>
The administration controller
</summary>
</member>
<member name="M:PayrollEngine.Backend.Controller.AdminController.#ctor(PayrollEngine.Api.Core.IControllerRuntime,Microsoft.Extensions.Hosting.IHostApplicationLifetime)">
<inheritdoc />
</member>
<member name="M:PayrollEngine.Backend.Controller.AdminController.StopApplication">
<summary>
Requests termination of the API application
</summary>
<remarks>
In IIS the application will be restarted with the next API request
source https://edi.wang/post/2019/3/7/restart-an-aspnet-core-application-programmatically
</remarks>
<returns>Ok</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.AdminController.ClearApplicationCache">
<summary>
Clears the application cache
</summary>
<returns>Ok</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.AdminController.GetApiReportMethods">
<summary>
Get the API report query method names (see TenantController.ExecuteReportQueryAsync)
</summary>
<returns>List of web method names</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.AdminController.GetBackendInformationAsync">
<summary>
Get backend server information including version, database, authentication and runtime configuration
</summary>
<returns>Backend information</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.CalendarController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.ICalendarService,PayrollEngine.Domain.Model.IPayrollCalculatorProvider,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.QueryCalendarsAsync(System.Int32,PayrollEngine.Query)">
<summary>
Query calendars
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The tenant calendars</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.GetCalendarAsync(System.Int32,System.Int32)">
<summary>
Get a calendar
</summary>
<param name="tenantId">The tenant id</param>
<param name="calendarId">The id of the calendar</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.CreateCalendarAsync(System.Int32,PayrollEngine.Api.Model.Calendar)">
<summary>
Add a new calendar
</summary>
<param name="tenantId">The tenant id</param>
<param name="calendar">The calendar to add</param>
<returns>The newly created calendar</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.UpdateCalendarAsync(System.Int32,PayrollEngine.Api.Model.Calendar)">
<summary>
Update a calendar
</summary>
<param name="tenantId">The tenant id</param>
<param name="calendar">The calendar with updated values</param>
<returns>The modified calendar</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.DeleteCalendarAsync(System.Int32,System.Int32)">
<summary>
Delete a calendar
</summary>
<param name="tenantId">The tenant id</param>
<param name="calendarId">The id of the calendar</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.GetCalendarPeriodAsync(System.Int32,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32})">
<summary>
Get calendar period
</summary>
<param name="tenantId">The tenant id</param>
<param name="cultureName">The culture to use (default: tenant culture)</param>
<param name="calendarName">The calendar configuration (default: tenant calendar)</param>
<param name="periodMoment">The moment within the payrun period (default: now)</param>
<param name="offset">The offset:<br />
less than zero: past<br />
zero: current (default)<br />
greater than zero: future<br /></param>
<returns>The calendar period</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.GetCalendarCycleAsync(System.Int32,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32})">
<summary>
Get calendar cycle
</summary>
<param name="tenantId">The tenant id</param>
<param name="cultureName">The culture to use (default: tenant culture)</param>
<param name="calendarName">The calendar configuration (default: tenant calendar)</param>
<param name="cycleMoment">The moment within the payrun cycle (default: now)</param>
<param name="offset">The offset:<br />
less than zero: past<br />
zero: current (default)<br />
greater than zero: future<br /></param>
<returns>The calendar cycle</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CalendarController.CalculateCalendarValueAsync(System.Int32,System.Decimal,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
<summary>
Calculate calendar value
</summary>
<param name="tenantId">The tenant id</param>
<param name="value">The value to calculate</param>
<param name="cultureName">The culture to use (default: tenant culture)</param>
<param name="calendarName">The calendar configuration (default: tenant calendar)</param>
<param name="evaluationDate">The evaluation period date (default: all)</param>
<param name="evaluationPeriodDate">The date within the evaluation period (default: evaluation date)</param>
<returns>The calendar value</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.CaseAuditController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseAuditController.#ctor(PayrollEngine.Domain.Application.Service.ICaseService,PayrollEngine.Domain.Application.Service.ICaseAuditService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseAuditController.QueryCaseAuditsAsync(System.Int32,System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation case audits
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseId">The case id </param>
<param name="regulationId">The regulation id </param>
<param name="query">Query parameters</param>
<returns>The audit objects</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseAuditController.GetCaseAuditAsync(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation case audit
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id </param>
<param name="caseId">The case id</param>
<param name="auditId">The audit object id</param>
<returns>The audit object</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.CaseController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseController.#ctor(PayrollEngine.Domain.Application.Service.IRegulationService,PayrollEngine.Domain.Application.Service.ICaseService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseController.QueryCasesAsync(System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query all regulation cases
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="query">Query parameters</param>
<returns>The regulation cases</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseController.GetCaseAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation case
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseId">The case id</param>
<returns>The regulation case</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseController.CreateCaseAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.Case)">
<summary>
Add a new regulation case
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="case">The case to add</param>
<returns>The newly created regulation case</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseController.UpdateCaseAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.Case)">
<summary>
Update a regulation case
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="case">The case with updated values</param>
<returns>The modified regulation case</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseController.RebuildCaseAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Rebuild regulation case
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseId">The case id</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseController.DeleteCaseAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Delete a regulation case
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseId">The case id</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.CaseFieldAuditController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldAuditController.#ctor(PayrollEngine.Domain.Application.Service.ICaseFieldService,PayrollEngine.Domain.Application.Service.ICaseFieldAuditService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldAuditController.QueryCaseFieldAuditsAsync(System.Int32,System.Int32,System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation case field audits
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseId">The regulation id</param>
<param name="fieldId">The case field id</param>
<param name="query">Query parameters</param>
<returns>The audit objects</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldAuditController.GetCaseFieldAuditAsync(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation case field audit
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseId">The regulation id</param>
<param name="fieldId">The case field id</param>
<param name="auditId">The audit object id</param>
<returns>The audit object</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.CaseFieldController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldController.#ctor(PayrollEngine.Domain.Application.Service.ICaseService,PayrollEngine.Domain.Application.Service.ICaseFieldService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldController.QueryCaseFieldsAsync(System.Int32,System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation case fields
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseId">The case id</param>
<param name="query">Query parameters</param>
<returns>The regulation case fields</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldController.GetCaseFieldAsync(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation case field
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseId">The case id</param>
<param name="caseFieldId">The case field id</param>
<returns>The regulation case</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldController.CreateCaseFieldAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.CaseField)">
<summary>
Add a new regulation case field
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseId">The case id</param>
<param name="caseField">The case field to add</param>
<returns>The newly created regulation case field</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldController.UpdateCaseFieldAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.CaseField)">
<summary>
Update a regulation case field
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseId">The case id</param>
<param name="caseField">The case field with updated values</param>
<returns>The modified regulation case field</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseFieldController.DeleteCaseFieldAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Delete a regulation case field
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseId">The case id</param>
<param name="fieldId">The case field id</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.CaseRelationAuditController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationAuditController.#ctor(PayrollEngine.Domain.Application.Service.ICaseRelationService,PayrollEngine.Domain.Application.Service.ICaseRelationAuditService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationAuditController.QueryCaseRelationAuditsAsync(System.Int32,System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation case relation audits
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="relationId">The case relation id</param>
<param name="query">Query parameters</param>
<returns>The audit objects</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationAuditController.GetCaseRelationAuditAsync(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation case relation audit
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="relationId">The relation id</param>
<param name="auditId">The audit object id</param>
<returns>The audit object</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.CaseRelationController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationController.#ctor(PayrollEngine.Domain.Application.Service.IRegulationService,PayrollEngine.Domain.Application.Service.ICaseService,PayrollEngine.Domain.Application.Service.ICaseRelationService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationController.QueryCaseRelationsAsync(System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation case relations
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="query">Query parameters</param>
<returns>The regulation case fields</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationController.GetCaseRelationAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation case relation
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="relationId">The case id</param>
<returns>The regulation case</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationController.CreateCaseRelationAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.CaseRelation)">
<summary>
Add a new regulation case relation
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseRelation">The case relation to add</param>
<returns>The newly created regulation case relation</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationController.UpdateCaseRelationAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.CaseRelation)">
<summary>
Update a regulation case relation
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="caseRelation">The case relation with updated values</param>
<returns>The modified regulation case relation</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationController.RebuildCaseRelationAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Rebuild regulation case relation
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="relationId">The id of the case relation</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.CaseRelationController.DeleteCaseRelationAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Delete a regulation case relation
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="relationId">The id of the case relation</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.CollectorAuditController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorAuditController.#ctor(PayrollEngine.Domain.Application.Service.ICollectorService,PayrollEngine.Domain.Application.Service.ICollectorAuditService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorAuditController.QueryCollectorAuditsAsync(System.Int32,System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation collector audits
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="collectorId">The id of the collector</param>
<param name="query">Query parameters</param>
<returns>The audit objects</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorAuditController.GetCollectorAuditAsync(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation collector audit
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="collectorId">The collector id</param>
<param name="auditId">The audit object id</param>
<returns>The audit object</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.CollectorController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorController.#ctor(PayrollEngine.Domain.Application.Service.IRegulationService,PayrollEngine.Domain.Application.Service.ICollectorService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorController.QueryCollectorsAsync(System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Get regulation collectors
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="query">Query parameters</param>
<returns>The regulation collectors</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorController.GetCollectorAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation collector
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="collectorId">The collector id</param>
<returns>The regulation collector</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorController.CreateCollectorAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.Collector)">
<summary>
Add a new regulation collector
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="collector">The collector to add</param>
<returns>The newly created regulation collector</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorController.UpdateCollectorAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.Collector)">
<summary>
Update a regulation collector
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="collector">The collector with updated values</param>
<returns>The modified regulation collector</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorController.RebuildCollectorAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Rebuild regulation collector
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="collectorId">The id of the collector</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.CollectorController.DeleteCollectorAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Delete a regulation collector
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="collectorId">The id of the collector</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.CompanyCaseChangeController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseChangeController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.ICompanyCaseChangeService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseChangeController.QueryCompanyCaseChangesAsync(System.Int32,PayrollEngine.Domain.Model.CaseChangeQuery)">
<summary>
Query company case changes
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The case value changes array</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseChangeController.GetCompanyCaseChangeAsync(System.Int32,System.Int32)">
<summary>
Get a company case change
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseChangeId">The case value change id</param>
<returns>The case value change</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseChangeController.QueryCompanyCaseChangesValuesAsync(System.Int32,PayrollEngine.Domain.Model.CaseChangeQuery)">
<summary>
Query company case changes values
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The case change values array</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseChangeController.DeleteCompanyCaseChangeAsync(System.Int32,System.Int32)">
<summary>
Delete a company case value
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The case value id</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.CompanyCaseDocumentController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseDocumentController.#ctor(PayrollEngine.Domain.Application.Service.ICompanyCaseValueService,PayrollEngine.Domain.Application.Service.ICompanyCaseDocumentService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseDocumentController.QueryCompanyCaseDocumentsAsync(System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query company case documents
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The case value id</param>
<param name="query">Query parameters</param>
<returns>The company case documents</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseDocumentController.GetCompanyCaseDocument(System.Int32,System.Int32,System.Int32)">
<summary>
Get a company case document
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The case value id</param>
<param name="documentId">The document id</param>
<returns>The company case document</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.CompanyCaseValueController">
<summary>
Read-only controller for company case values.
Case values are created and managed through case changes (see PayrollController).
Direct create, update or delete operations are not supported.
</summary>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseValueController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.ICompanyCaseValueService,PayrollEngine.Domain.Application.Service.IPayrollService,PayrollEngine.Domain.Application.Service.IRegulationService,PayrollEngine.Domain.Application.Service.ILookupSetService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseValueController.QueryCompanyCaseValuesAsync(System.Int32,PayrollEngine.Domain.Model.CaseValueQuery)">
<summary>
Query company case values
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The case values</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseValueController.GetCompanyCaseValueSlotsAsync(System.Int32,System.String)">
<summary>
Get company case value slots
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseFieldName">The case field name</param>
<returns>The case value slots</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.CompanyCaseValueController.GetCompanyCaseValue(System.Int32,System.Int32)">
<summary>
Get a company case value
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The company case value id</param>
<returns>The case value</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.DivisionController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.IDivisionService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.QueryDivisionsAsync(System.Int32,PayrollEngine.Query)">
<summary>
Query divisions
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The tenant divisions</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.GetDivisionAsync(System.Int32,System.Int32)">
<summary>
Get a division
</summary>
<param name="tenantId">The tenant id</param>
<param name="divisionId">The id of the division</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.CreateDivisionAsync(System.Int32,PayrollEngine.Api.Model.Division)">
<summary>
Add a new division
</summary>
<param name="tenantId">The tenant id</param>
<param name="division">The division to add</param>
<returns>The newly created division</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.UpdateDivisionAsync(System.Int32,PayrollEngine.Api.Model.Division)">
<summary>
Update a division
</summary>
<param name="tenantId">The tenant id</param>
<param name="division">The division with updated values</param>
<returns>The modified division</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.DeleteDivisionAsync(System.Int32,System.Int32)">
<summary>
Delete a division
</summary>
<param name="tenantId">The tenant id</param>
<param name="divisionId">The id of the division</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.GetDivisionAttributeAsync(System.Int32,System.Int32,System.String)">
<summary>
Get a division attribute
</summary>
<param name="tenantId">The tenant id</param>
<param name="divisionId">The id of the division</param>
<param name="attributeName">The attribute name</param>
<returns>The attribute value as JSON</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.SetDivisionAttributeAsync(System.Int32,System.Int32,System.String,System.String)">
<summary>
Set a division attribute
</summary>
<param name="tenantId">The tenant id</param>
<param name="divisionId">The id of the division</param>
<param name="attributeName">The attribute name</param>
<param name="value">The attribute value as JSON</param>
<returns>The current attribute value as JSON</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.DivisionController.DeleteDivisionAttributeAsync(System.Int32,System.Int32,System.String)">
<summary>
Delete a division attribute
</summary>
<param name="tenantId">The tenant id</param>
<param name="divisionId">The id of the division</param>
<param name="attributeName">The attribute name</param>
<returns>True if the attribute was deleted</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.EmployeeCaseChangeController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseChangeController.#ctor(PayrollEngine.Domain.Application.Service.IEmployeeService,PayrollEngine.Domain.Application.Service.IEmployeeCaseChangeService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseChangeController.QueryEmployeeCaseChangesAsync(System.Int32,System.Int32,PayrollEngine.Domain.Model.CaseChangeQuery)">
<summary>
Query employee case changes
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="query">Query parameters</param>
<returns>The case changes array</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseChangeController.GetEmployeeCaseChangeAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Get an employee case change
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="caseChangeId">The case value change id</param>
<returns>The case value change</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseChangeController.QueryEmployeeCaseChangesValuesAsync(System.Int32,System.Int32,PayrollEngine.Domain.Model.CaseChangeQuery)">
<summary>
Query employee case changes values
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="query">Query parameters</param>
<returns>The case change values array</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseChangeController.DeleteEmployeeCaseChangeAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Delete a case value
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="caseValueId">The case value id</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.EmployeeCaseDocumentController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseDocumentController.#ctor(PayrollEngine.Domain.Application.Service.IEmployeeCaseValueService,PayrollEngine.Domain.Application.Service.IEmployeeCaseDocumentService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseDocumentController.QueryEmployeeCaseDocumentsAsync(System.Int32,System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query employee case documents
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="caseValueId">The case value id</param>
<param name="query">Query parameters</param>
<returns>The employee case documents</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseDocumentController.GetEmployeeCaseDocumentAsync(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Get an employee case document
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="caseValueId">The case value id</param>
<param name="documentId">The document id</param>
<returns>The employee case document</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.EmployeeCaseValueController">
<summary>
Read-only controller for employee case values.
Case values are created and managed through case changes (see PayrollController).
Direct create, update or delete operations are not supported.
</summary>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseValueController.#ctor(PayrollEngine.Domain.Application.Service.IEmployeeService,PayrollEngine.Domain.Application.Service.IEmployeeCaseValueService,PayrollEngine.Domain.Application.Service.IPayrollService,PayrollEngine.Domain.Application.Service.IRegulationService,PayrollEngine.Domain.Application.Service.ILookupSetService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseValueController.QueryEmployeeCaseValuesAsync(System.Int32,System.Int32,PayrollEngine.Domain.Model.CaseValueQuery)">
<summary>
Query employee case values
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="query">Query parameters</param>
<returns>The employee case values</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseValueController.GetEmployeeCaseValueSlotsAsync(System.Int32,System.Int32,System.String)">
<summary>
Get employee case value slots
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="caseFieldName">The case field name</param>
<returns>The case value slots</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeCaseValueController.GetEmployeeCaseValueAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Get an employee case value
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The employee id</param>
<param name="caseValueId">The employee case value id</param>
<returns>The case value</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.EmployeeController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.IEmployeeService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.QueryEmployeesAsync(System.Int32,PayrollEngine.Domain.Model.DivisionQuery)">
<summary>
Query employees
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>An ActionResult with employee array</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.GetEmployeeAsync(System.Int32,System.Int32)">
<summary>
Get employee
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The id of the employee</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.CreateEmployeeAsync(System.Int32,PayrollEngine.Api.Model.Employee)">
<summary>
Add a new employee
</summary>
<param name="tenantId">The tenant id</param>
<param name="employee">The employee to add</param>
<returns>The newly created employee</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.CreateEmployeesBulkAsync(System.Int32,PayrollEngine.Api.Model.Employee[])">
<summary>
Bulk create employees
</summary>
<param name="tenantId">The tenant id</param>
<param name="employees">The employees to create</param>
<returns>The number of created employees</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.UpdateEmployeeAsync(System.Int32,PayrollEngine.Api.Model.Employee)">
<summary>
Update a employee
</summary>
<param name="tenantId">The tenant id</param>
<param name="employee">The employee with updated values</param>
<returns>The modified employee</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.DeleteEmployeeAsync(System.Int32,System.Int32)">
<summary>
Delete a employee
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The id of the employee</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.GetEmployeeAttributeAsync(System.Int32,System.Int32,System.String)">
<summary>
Get an employee attribute
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The id of the employee</param>
<param name="attributeName">The attribute name</param>
<returns>The attribute value as JSON</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.SetEmployeeAttributeAsync(System.Int32,System.Int32,System.String,System.String)">
<summary>
Set an employee attribute
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The id of the employee</param>
<param name="attributeName">The attribute name</param>
<param name="value">The attribute value as JSON</param>
<returns>The current attribute value as JSON</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.EmployeeController.DeleteEmployeeAttributeAsync(System.Int32,System.Int32,System.String)">
<summary>
Delete an employee attribute
</summary>
<param name="tenantId">The tenant id</param>
<param name="employeeId">The id of the employee</param>
<param name="attributeName">The attribute name</param>
<returns>True if the attribute was deleted</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.GlobalCaseChangeController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseChangeController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.IGlobalCaseChangeService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseChangeController.QueryGlobalCaseChangesAsync(System.Int32,PayrollEngine.Domain.Model.CaseChangeQuery)">
<summary>
Query global case changes
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The case value changes array</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseChangeController.GetGlobalCaseChangeAsync(System.Int32,System.Int32)">
<summary>
Get a global case change
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseChangeId">The case value change id</param>
<returns>The case value change</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseChangeController.QueryGlobalCaseChangesValuesAsync(System.Int32,PayrollEngine.Domain.Model.CaseChangeQuery)">
<summary>
Query global case changes values
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The case change values array</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseChangeController.DeleteGlobalCaseChangeAsync(System.Int32,System.Int32)">
<summary>
Delete a global case value
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The case value id</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.GlobalCaseDocumentController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseDocumentController.#ctor(PayrollEngine.Domain.Application.Service.IGlobalCaseValueService,PayrollEngine.Domain.Application.Service.IGlobalCaseDocumentService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseDocumentController.QueryGlobalCaseDocumentsAsync(System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query global case documents
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The case value id</param>
<param name="query">Query parameters</param>
<returns>The global case documents</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseDocumentController.GetGlobalCaseDocumentAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Get a global case document
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The case value id</param>
<param name="documentId">The document id</param>
<returns>The global case document</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.GlobalCaseValueController">
<summary>
Read-only controller for global case values.
Case values are created and managed through case changes (see PayrollController).
Direct create, update or delete operations are not supported.
</summary>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseValueController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.IPayrollService,PayrollEngine.Domain.Application.Service.IRegulationService,PayrollEngine.Domain.Application.Service.IGlobalCaseValueService,PayrollEngine.Domain.Application.Service.ILookupSetService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseValueController.QueryGlobalCaseValuesAsync(System.Int32,PayrollEngine.Domain.Model.CaseValueQuery)">
<summary>
Query global case values
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The global case values</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseValueController.GetGlobalCaseValueSlotsAsync(System.Int32,System.String)">
<summary>
Get global case value slots
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseFieldName">The case field name</param>
<returns>The case value slots</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.GlobalCaseValueController.GetGlobalCaseValueAsync(System.Int32,System.Int32)">
<summary>
Get a global case value
</summary>
<param name="tenantId">The tenant id</param>
<param name="caseValueId">The global case value id</param>
<returns>The case value</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.LogController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.LogController.#ctor(PayrollEngine.Domain.Application.Service.ITenantService,PayrollEngine.Domain.Application.Service.ILogService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.LogController.QueryLogsAsync(System.Int32,PayrollEngine.Query)">
<summary>
Query logs
</summary>
<param name="tenantId">The tenant id</param>
<param name="query">Query parameters</param>
<returns>The tenant logs</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.LogController.GetLogAsync(System.Int32,System.Int32)">
<summary>
Get a log
</summary>
<param name="tenantId">The tenant id</param>
<param name="logId">The id of the log</param>
<returns>The tenant log</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.LogController.CreateLogAsync(System.Int32,PayrollEngine.Api.Model.Log)">
<summary>
Add a new log
</summary>
<param name="tenantId">The tenant id</param>
<param name="log">The log to add</param>
<returns>The newly created log</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.LogController.DeleteLogAsync(System.Int32,System.Int32)">
<summary>
Delete a log
</summary>
<param name="tenantId">The tenant id</param>
<param name="logId">The id of the log</param>
</member>
<member name="T:PayrollEngine.Backend.Controller.LookupAuditController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupAuditController.#ctor(PayrollEngine.Domain.Application.Service.ILookupService,PayrollEngine.Domain.Application.Service.ILookupAuditService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupAuditController.QueryLookupAuditsAsync(System.Int32,System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation lookup audits
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="lookupId">The lookup id</param>
<param name="query">Query parameters</param>
<returns>The audit objects</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupAuditController.GetLookupAuditAsync(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation lookup audit
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="lookupId">The lookup id</param>
<param name="auditId">The audit object id</param>
<returns>The audit object</returns>
</member>
<member name="T:PayrollEngine.Backend.Controller.LookupController">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupController.#ctor(PayrollEngine.Domain.Application.Service.IRegulationService,PayrollEngine.Domain.Application.Service.ILookupService,PayrollEngine.Domain.Application.Service.ILookupSetService,PayrollEngine.Api.Core.IControllerRuntime)">
<inheritdoc/>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupController.QueryLookupsAsync(System.Int32,System.Int32,PayrollEngine.Query)">
<summary>
Query regulation lookups
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="query">Query parameters</param>
<returns>The regulation lookups</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupController.GetLookupAsync(System.Int32,System.Int32,System.Int32)">
<summary>
Get a regulation lookup
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="lookupId">The id of the lookup</param>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupController.CreateLookupAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.Lookup)">
<summary>
Add a new regulation lookup
</summary>
<param name="tenantId">The tenant id</param>
<param name="regulationId">The regulation id</param>
<param name="lookup">The lookup to add</param>
<returns>The newly created lookup</returns>
</member>
<member name="M:PayrollEngine.Backend.Controller.LookupController.UpdateLookupAsync(System.Int32,System.Int32,PayrollEngine.Api.Model.Lookup)">