示例#1
0
 public OrganizationController(
     IRothschildHouseIdentityClient rothschildHouseIdentityClient,
     OrganizationService organizationService)
 {
     RothschildHouseIdentityClient = rothschildHouseIdentityClient;
     OrganizationService           = organizationService;
     OrganizationService.UserInfo  = UserInfo;
 }
示例#2
0
 public EmployeeController(
     IRothschildHouseIdentityClient rothschildHouseIdentityClient,
     EmployeeService employeeService)
 {
     RothschildHouseIdentityClient = rothschildHouseIdentityClient;
     EmployeeService          = employeeService;
     EmployeeService.UserInfo = UserInfo;
 }
 public SalesController(ILogger <SalesController> logger, IRothschildHouseIdentityClient rothschildHouseIdentityClient, IRothschildHousePaymentClient rothschildHousePaymentClient, ISalesService salesService)
     : base()
 {
     Logger = logger;
     RothschildHouseIdentityClient = rothschildHouseIdentityClient;
     RothschildHousePaymentClient  = rothschildHousePaymentClient;
     SalesService = salesService;
 }
示例#4
0
 public HealthController(
     IRothschildHouseIdentityClient rothschildHouseIdentityClient,
     HealthService healthService,
     AlertService alertService,
     EmployeeService employeeService)
 {
     RothschildHouseIdentityClient = rothschildHouseIdentityClient;
     HealthService          = healthService;
     HealthService.UserInfo = UserInfo;
     AlertService           = alertService;
     EmployeeService        = employeeService;
 }
 public EmployeeWebController(
     IRothschildHouseIdentityClient rothschildHouseIdentityClient,
     EmployeeService employeeService,
     AlertService alertService,
     HealthService healthService,
     OrganizationService organizationService)
 {
     RothschildHouseIdentityClient = rothschildHouseIdentityClient;
     EmployeeService          = employeeService;
     AlertService             = alertService;
     HealthService            = healthService;
     OrganizationService      = organizationService;
     EmployeeService.UserInfo = UserInfo;
 }