public ProfileModel(
     IAppUserService appUserService,
     IAppFileService fileAppService,
     IdentityUserManager _IdentityUserManager)
 {
     this._AppUserService      = appUserService;
     this._FileAppService      = fileAppService;
     this._IdentityUserManager = _IdentityUserManager;
 }
Exemplo n.º 2
0
 public FilesController(IAppFileService appFileService)
 {
     _AppFileService = appFileService;
 }