コード例 #1
0
 public ResourcesController(ICoreOrderService orderService, IUserService userService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices,
                            IEmployeeServices employeeServices, ITenantLocationServices tenantLocationServices, IRolesServices rolesServices, IGroupsServices groupsServices, ContactNumbersServices contactNumberServices, AddressServices addressServices,
                            EmployeeShiftsStoresServices employeeShiftStoreServices, EmployeeRolesServices employeeRoleServices, EmployeeGroupsServices employeeGroupServices, IActivityServices activityServices)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     _employeeServices             = employeeServices;
     _tenantLocationsServices      = tenantLocationServices;
     _rolesServices                = rolesServices;
     _groupsServices               = groupsServices;
     _contactNumbersServices       = contactNumberServices;
     _addressServices              = addressServices;
     _employeeShiftsStoresServices = employeeShiftStoreServices;
     _employeeRolesServices        = employeeRoleServices;
     _employeeGroupsServices       = employeeGroupServices;
     _activityServices             = activityServices;
     _userService = userService;
 }
コード例 #2
0
 public GroupsController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IGroupsServices groupServices) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _groupsServices = groupServices;
 }
コード例 #3
0
 public GroupsController(IGroupsServices services)
 {
     groupServices = services;
 }
コード例 #4
0
 public GroupsController(GoingOutContext context)
 {
     _groupServices = new GroupsService(context);
 }
コード例 #5
0
 public UsersController(GoingOutContext context)
 {
     _userServices  = new UsersService(context);
     _groupServices = new GroupsService(context);
 }