Exemplo n.º 1
0
        public void SetUp()
        {
            CreditLineDt  = new CreditLineDt();
            _mockedCredit = new Mock <ICredit>();

            BaseCreditLine = _creditLine = new CreditLine(_mockedCredit.Object, CreditLineDt);
        }
Exemplo n.º 2
0
 protected BaseCreditLine(ICredit credit, CreditLineDt creditLine)
 {
     Credit       = credit;
     CreditLineDt = creditLine;
 }
Exemplo n.º 3
0
 public CreditLine(ICredit credit, CreditLineDt creditLine)
     : base(credit, creditLine)
 {
 }
Exemplo n.º 4
0
 public FreeCreditLine(ICredit creditWorkflow, CreditLineDt creditLine)
     : base(creditWorkflow, creditLine)
 {
 }