public ProjectAppService(ProjectManagementContext context, SignInManager <ApplicationUser> signInManager, IMapper mapper, CurrentUserService currentUserService)
 {
     this._dbContext     = context;
     _mapper             = mapper;
     _currentUserService = currentUserService;
     this._signInManager = signInManager;
 }
Ejemplo n.º 2
0
 public TaskAppService(ProjectManagementContext context, IMapper mapper, CurrentUserService currentUserService)
 {
     this._dbContext     = context;
     _mapper             = mapper;
     _currentUserService = currentUserService;
 }