Example #1
0
        public AccountManagementController(IUnitOfWork <NationalTeaContext> ofWork, ICommonSearchModel commonSearchModel, IUserProfileAppService userProfileAppService)
        {
            _commonSearchModel = commonSearchModel;

            _userProfileAppService = userProfileAppService;
            _unit = ofWork;
        }
Example #2
0
 public AppController(IUserProfileAppService userProfileAppService)
 {
     _userProfileAppService = userProfileAppService;
 }
Example #3
0
 public UserProfilesController(IUserProfileAppService app, IUserAppService userApp, ILogger <UserProfilesController> logger)
     : base(userApp, logger)
 {
     __app = app;
 }
Example #4
0
 public UserAppService(IUserRepository repository, IUserProfileAppService userProfileApp, ICustomerAppService customerApp)
 {
     __repository     = repository;
     __userProfileApp = userProfileApp;
     __customerApp    = customerApp;
 }