public UserController(IMapper mapper, WorkManagementContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
 public AuthenticationController(WorkManagementContext context)
 {
     _context = context;
 }
 public UsersController(WorkManagementContext context)
 {
     _context = context;
 }
 public ProjectsController(WorkManagementContext context)
 {
     _context = context;
 }
 public TasksController(WorkManagementContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public TaskController(IMapper mapper, WorkManagementContext context, IHostingEnvironment hostingEnvironment)
 {
     this.context             = context;
     this._mapper             = mapper;
     this._hostingEnvironment = hostingEnvironment;
 }
 public GroupController(IMapper mapper, WorkManagementContext context)
 {
     this.context = context;
     this._mapper = mapper;
 }
Exemplo n.º 8
0
 public StatusController(WorkManagementContext context)
 {
     this.context = context;
 }
Exemplo n.º 9
0
 public TemplatesController(WorkManagementContext context)
 {
     _context = context;
 }
 public ValuesController(WorkManagementContext context)
 {
     _context = context;
 }