public DefendantsComponent(IDefendantsRepository DefentantsRepository, IDefendantCaseLogRepository DefendantCaseLogRepository, IDefendantChargesRepository DefendantChargesRepository, IDefendantsDecisionRepository DefDec
                                   , IDefendantsSessionLogRepository DefSess)
        {
            this.DefentantsRepository       = DefentantsRepository;
            this.DefendantCaseLogRepository = DefendantCaseLogRepository;
            this.DefendantChargesRepository = DefendantChargesRepository;

            this.DefDec  = DefDec;
            this.DefSess = DefSess;
        }
Esempio n. 2
0
 public DefendantsSessionLogComponent(IDefendantsSessionLogRepository DefRepository)
 {
     this.DefRepository = DefRepository;
 }