private DummyCreditLineRepository()
 {
     CreditLine sample = new CreditLine();
     AmountBoundary sampleBoundary = new AmountBoundary(2000000, 6000000);
     sample.Conditions.Add(sampleBoundary);
     sample.Name = "Sample credit product.";
     sample.Id = 1;
     lines.Add(sample);
 }
Exemplo n.º 2
0
 public ActionResult SelectCreditLine(CreditLine line)
 {
     return null ;
 }