Beispiel #1
0
 public DetailsModel(ProjectManagementWebApp.Data.ProjectManagementContext context,
                     TaskAppService taskAppService,
                     FileAppService fileAppService,
                     CommentAppService commentAppService,
                     IWebHostEnvironment environment
                     )
 {
     _context           = context;
     _taskAppService    = taskAppService;
     _fileAppService    = fileAppService;
     _commentAppService = commentAppService;
     this._environment  = environment;
 }
 public CreateModel(SignInManager <ApplicationUser> signInManager, RoleManager <ApplicationRole> roleManager, ProjectManagementWebApp.Data.ProjectManagementContext context)
 {
     _signInManager = signInManager;
     _roleManager   = roleManager;
     _context       = context;
 }
Beispiel #3
0
 public IndexModel(ProjectManagementWebApp.Data.ProjectManagementContext context)
 {
     _context = context;
 }
 public DeleteModel(ProjectManagementWebApp.Data.ProjectManagementContext context, CommentAppService commentAppService)
 {
     _context           = context;
     _commentAppService = commentAppService;
 }
 public DeleteModel(ProjectManagementWebApp.Data.ProjectManagementContext context, TaskAppService taskAppService)
 {
     _context        = context;
     _taskAppService = taskAppService;
 }