Exemplo n.º 1
0
 public AbnormalCaseService(IAbnormalCaseRepository AbnormalCaseRepository, IExplanationRequestRepository explanationRequestRepository,
                            IUnitOfWork unitOfWork, IAbnormalReasonRepository abnormalReasonRepository)
 {
     this.explanationRequestRepository = explanationRequestRepository;
     this._abnormalCaseRepository      = AbnormalCaseRepository;
     this._abnormalReasonRepository    = abnormalReasonRepository;
     this._unitOfWork = unitOfWork;
 }/// <summary>
Exemplo n.º 2
0
 public AbnormalReasonService(IAbnormalReasonRepository abnormalReasonRepository,
                              IUnitOfWork unitOfWork)
 {
     this._abnormalReasonRepository = abnormalReasonRepository;
     this._unitOfWork = unitOfWork;
 }