Пример #1
0
 public MesaVotoService(
     IApiResponseMessage apiResponseMessage,
     IRsaHelper rsaHelper,
     IAesService aesService,
     IVotoRepository votoRepository,
     IOpcionRepository opcionRepository
     )
 {
     _apiResponseMessage = apiResponseMessage;
     _rsaHelper          = rsaHelper;
     _aesService         = aesService;
     _votoRepository     = votoRepository;
     _opcionRepository   = opcionRepository;
 }
Пример #2
0
 public EstandarService(
     IEstandarRepository estandarRepository,
     IEventLogService eventLogService,
     IGrupoEstandarRepository grupoEstandarRepository,
     ICalificacionRepository calificacionRepository,
     ICategoriaRepository categoriaRepository,
     INivelRepository nivelRepository,
     IOpcionRepository opcionRepository,
     ISistemaRepository sistemaRepository,
     IClasificacionRepository clasificacionRepository)
 {
     _estandarRepository      = estandarRepository;
     _eventLogService         = eventLogService;
     _grupoEstandarRepository = grupoEstandarRepository;
     _calificacionRepository  = calificacionRepository;
     _categoriaRepository     = categoriaRepository;
     _nivelRepository         = nivelRepository;
     _opcionRepository        = opcionRepository;
     _sistemaRepository       = sistemaRepository;
     _clasificacionRepository = clasificacionRepository;
 }
Пример #3
0
 public OpcionManager(IOpcionRepository repository, ITransaction transaction) : base(repository, transaction)
 {
 }