Beispiel #1
0
 public UserServices(IRepository <UserInfo> userRepository,
                     IEncryptionService iEncryption,
                     IModelTransfer iModelTransfer)
 {
     this._userRepository = userRepository;
     this._iEncryption    = iEncryption;
     this._iModelTransfer = iModelTransfer;
 }
Beispiel #2
0
 public UserController(IUserServices iUserServices,
                       IUserLoginServices iUserLoginService,
                       IAuthenticationService authenticationService,
                       IModelTransfer iModelTransfer,
                       IBusinessService iBusinessService)
 {
     _iUserServices          = iUserServices;
     _iUserLoginService      = iUserLoginService;
     _iAuthenticationService = authenticationService;
     _iModelTransfer         = iModelTransfer;
     _iBusinessService       = iBusinessService;
 }