public DocumentDeliveryManager(IDocumentDeliveryRepository repository, IDeliveryRepository delivery,
                                IUserStudentRepository student)
 {
     this._repository = repository;
     this._delivery   = delivery;
     this._student    = student;
 }
Ejemplo n.º 2
0
 public DeliveryManager(IDeliveryRepository repository, IAssignmentsRepository assignments,
                        IUserStudentRepository student)
 {
     this._repository  = repository;
     this._assignments = assignments;
     this._student     = student;
 }
Ejemplo n.º 3
0
 public UserStudentManager(IUserStudentRepository repository, IRoleRepository roleRepository)
 {
     this._repository     = repository;
     this._roleRepository = roleRepository;
 }