| Line 7... |
Line 7... |
| 7 |
import com.spice.profitmandi.dao.entity.cs.Position;
|
7 |
import com.spice.profitmandi.dao.entity.cs.Position;
|
| 8 |
import com.spice.profitmandi.dao.entity.dtr.Role;
|
8 |
import com.spice.profitmandi.dao.entity.dtr.Role;
|
| 9 |
import com.spice.profitmandi.dao.entity.dtr.User;
|
9 |
import com.spice.profitmandi.dao.entity.dtr.User;
|
| 10 |
import com.spice.profitmandi.dao.entity.dtr.UserRole;
|
10 |
import com.spice.profitmandi.dao.entity.dtr.UserRole;
|
| 11 |
import com.spice.profitmandi.dao.repository.auth.AuthRepository;
|
11 |
import com.spice.profitmandi.dao.repository.auth.AuthRepository;
|
| 12 |
import com.spice.profitmandi.dao.repository.cs.PartnersPositionRepository;
|
12 |
import com.spice.profitmandi.dao.repository.cs.PartnerPositionRepository;
|
| 13 |
import com.spice.profitmandi.dao.repository.cs.PositionRepository;
|
13 |
import com.spice.profitmandi.dao.repository.cs.PositionRepository;
|
| 14 |
import com.spice.profitmandi.dao.repository.dtr.RoleRepository;
|
14 |
import com.spice.profitmandi.dao.repository.dtr.RoleRepository;
|
| 15 |
import com.spice.profitmandi.dao.repository.dtr.UserRepository;
|
15 |
import com.spice.profitmandi.dao.repository.dtr.UserRepository;
|
| 16 |
import com.spice.profitmandi.dao.repository.dtr.UserRoleRepository;
|
16 |
import com.spice.profitmandi.dao.repository.dtr.UserRoleRepository;
|
| 17 |
import com.spice.profitmandi.service.AuthService;
|
17 |
import com.spice.profitmandi.service.AuthService;
|
| Line 64... |
Line 64... |
| 64 |
|
64 |
|
| 65 |
@Autowired
|
65 |
@Autowired
|
| 66 |
private PositionRepository positionRepository;
|
66 |
private PositionRepository positionRepository;
|
| 67 |
|
67 |
|
| 68 |
@Autowired
|
68 |
@Autowired
|
| 69 |
private PartnersPositionRepository partnerPositionRepository;
|
69 |
private PartnerPositionRepository partnerPositionRepository;
|
| 70 |
|
70 |
|
| 71 |
@Autowired
|
71 |
@Autowired
|
| 72 |
@Qualifier("userUserRepository")
|
72 |
@Qualifier("userUserRepository")
|
| 73 |
private com.spice.profitmandi.dao.repository.user.UserRepository userUserRepository;
|
73 |
private com.spice.profitmandi.dao.repository.user.UserRepository userUserRepository;
|
| 74 |
|
74 |
|