//constructor
 public SignUpRepository(AgpromaDbContext con)
 {
     _context = con;
 }
 public SprintRepository(AgpromaDbContext context)
 {
     _context = context;
 }
Example #3
0
 public ChecklistRepository(AgpromaDbContext con)
 {
     _context = con;
 }
Example #4
0
 public TeamRepo(AgpromaDbContext _AgpromaDbContext)
 {
     this._AgpromaDbContext = _AgpromaDbContext;
 }
Example #5
0
 public EpicRepository(AgpromaDbContext context)
 {
     _context = context;
 }
Example #6
0
 public TaskRepository(AgpromaDbContext context)
 {
     _context = context;
 }
Example #7
0
 public EfficiencyRepository(AgpromaDbContext context)
 {
     _context = context;
 }
 //Constructor
 public ReleasePlansRepo(AgpromaDbContext context)
 {
     _context = context;
 }
 public ProjectMasterRepo(AgpromaDbContext context)
 {
     _context = context;
 }
 public MasterRepository(AgpromaDbContext context)
 {
     _context = context;
 }
Example #11
0
 //constructor
 public ProjectmembersRepository(AgpromaDbContext context)
 {
     _context = context;
 }
 public InviteRepository(AgpromaDbContext context)
 {
     _context = context;
 }
Example #13
0
 public BacklogRepository(AgpromaDbContext context)
 {
     _context = context;
 }