コード例 #1
0
 public EmployeePositionService(IEmployeePositionRepository employeePositionRepository) :base(employeePositionRepository)
 {
     _employeePositionRepository = employeePositionRepository;
 }
コード例 #2
0
 public EmployeePositionsController(IEmployeePositionRepository repository)
 {
     _repository = repository;
 }
コード例 #3
0
 public EmployeePositionService(IEmployeePositionRepository employeePositionRepository,
                                IEmployeeRepository employeeRepository)
 {
     _employeePositionRepository = employeePositionRepository;
     _employeeRepository         = employeeRepository;
 }
コード例 #4
0
 public EmployeePositionService(IEmployeePositionRepository employeePositionRepository, IMapper mapper)
 {
     _employeePositionRepository = employeePositionRepository;
     _mapper = mapper;
 }
コード例 #5
0
 public EmployeePositionController(IEmployeePositionRepository employeePositionRepository)
 {
     _employeePositionRepository = employeePositionRepository;
 }
コード例 #6
0
 public EmployeesController(IEmployeeRepository employeerepository, IFurnitureShopRepository shoprepository, IEmployeePositionRepository emppositionrepository)
 {
     _employeerepository    = employeerepository;
     _shoprepository        = shoprepository;
     _emppositionrepository = emppositionrepository;
 }