예제 #1
0
파일: Repository.cs 프로젝트: Dreuot/STM
 public Repository(STM_DBContext db)
 {
     this.db = db;
 }
예제 #2
0
 public LabelsController(STM_DBContext context)
 {
     _context = context;
 }
예제 #3
0
 public ProjectController(STM_DBContext db, ICryptography crypto)
 {
     this.db     = db;
     this.crypto = crypto;
 }
예제 #4
0
 public ProjectsController(STM_DBContext context)
 {
     _context = context;
 }
예제 #5
0
 public BoardsController(STM_DBContext context)
 {
     _context = context;
 }
예제 #6
0
 public AttachesController(STM_DBContext context)
 {
     _context = context;
 }
예제 #7
0
 public ReleasesController(STM_DBContext context)
 {
     _context = context;
 }
예제 #8
0
 public ListsController(STM_DBContext context)
 {
     _context = context;
 }
예제 #9
0
 public TaskPrioritiesController(STM_DBContext context)
 {
     _context = context;
 }
예제 #10
0
 public WorkflowsController(STM_DBContext context)
 {
     _context = context;
 }
예제 #11
0
 public UserRolesController(STM_DBContext context)
 {
     _context = context;
 }
예제 #12
0
 public CommentsController(STM_DBContext context)
 {
     _context = context;
 }
예제 #13
0
 public AuthController(STM_DBContext context, ICryptography crypt)
 {
     _context = context;
     _crypt   = crypt;
 }
예제 #14
0
 public UserTeamsController(STM_DBContext context)
 {
     _context = context;
 }
예제 #15
0
 public TeamRolesController(STM_DBContext context)
 {
     _context = context;
 }
예제 #16
0
 public ActivitiesController(STM_DBContext context)
 {
     _context = context;
 }
예제 #17
0
 public TasksController(STM_DBContext context)
 {
     _context = context;
 }
예제 #18
0
 public ConfigsController(STM_DBContext context)
 {
     _context = context;
 }