Example #1
0
 public BurndownController(
     IBurndownApiCalls burndownApiCalls,
     IMapper mapper,
     PostgressDbContext dbContext)
 {
     this.burndownApiCalls = burndownApiCalls;
     this.mapper           = mapper;
     this.dbContext        = dbContext;
 }
Example #2
0
 public UserController(IMapper mapper, PostgressDbContext context)
 {
     this.mapper    = mapper;
     this.dbContext = context;
 }
Example #3
0
 public UserStore(PostgressDbContext context)
 {
     this.context = context;
 }
Example #4
0
 public IterationController(PostgressDbContext postgressDbContext, IMapper mapper)
 {
     this.dbContext = postgressDbContext;
     this.mapper    = mapper;
 }