Beispiel #1
0
 public AuthController(IAuthRepository repo, IConfiguration config, IMapper mapper, IAssetRegistrationRepository repoAssets)
 {
     this._repo       = repo;
     this._config     = config;
     this._mapper     = mapper;
     this._repoAssets = repoAssets;
 }
 public PropertiesController(IAssetRegistrationRepository repo, IMapper mapper)
 {
     this._repo   = repo;
     this._mapper = mapper;
 }
 public FileUploadController(IAssetRegistrationRepository repo, IMapper mapper)
 {
     this._repo   = repo;
     this._mapper = mapper;
 }
Beispiel #4
0
 public UsersController(IAssetRegistrationRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
 public AssetRegistrationManager(IAssetRegistrationRepository _repository)
 {
     repository = _repository;
 }