コード例 #1
0
ファイル: MessageService.cs プロジェクト: GenchoBG/TeamCollab
 public MessageService(TeamCollabDbContext db)
 {
     this.db = db;
 }
コード例 #2
0
 public LogService(TeamCollabDbContext db)
 {
     this.db = db;
 }
コード例 #3
0
 public BoardService(TeamCollabDbContext db)
 {
     this.db = db;
 }
コード例 #4
0
ファイル: ProjectService.cs プロジェクト: GenchoBG/TeamCollab
 public ProjectService(TeamCollabDbContext db)
 {
     this.db = db;
 }
コード例 #5
0
 public CompanyService(TeamCollabDbContext db, UserManager <User> userManager)
 {
     this.db          = db;
     this.userManager = userManager;
 }