Ejemplo n.º 1
0
 public ImportTestDataHandler(
     ITestDataAccessor testData,
     IDynamoDBContext context,
     SasDynamoDbConfig config,
     IFactory <IBuilder <APIGatewayProxyResponse> > response)
 {
     _testData = testData;
     _context  = context;
     _config   = config;
     _response = response;
 }
 public GetLoansByStatusHandler(ILoanRepository loans, IFactory <IBuilder <APIGatewayProxyResponse> > response, SasDynamoDbConfig config)
 {
     _loans    = loans;
     _response = response;
     _config   = config;
 }