示例#1
0
 public ActionAndBenefitsServiceTests()
 {
     actionAndBenefitsService = new ActionAndBenefitsService(actionAndBenefitsRepository);
 }
示例#2
0
 public RabbitMQService(IActionAndBenefitsService actionAndBenefitsService)
 {
     this._actionAndBenefitsService = actionAndBenefitsService;
 }
示例#3
0
 public ActionAndBenefitsController([FromServices] IActionAndBenefitsService actionAndBenefitsService)
 {
     _actionAndBenefitsService = actionAndBenefitsService;
 }