Esempio n. 1
0
 public ProdutorAppService(ISmartNotification notification,
                           IProdutorRepositorio produtorRepositorio,
                           IUsuarioRepositorio usuarioRepositorio)
 {
     _notification        = notification;
     _usuarioRepositorio  = usuarioRepositorio;
     _produtorRepositorio = produtorRepositorio;
 }
Esempio n. 2
0
        public EmissoraAppServiceTests()
        {
            usuarioRepository = Substitute.For <IUsuarioRepository>();
            smartNotification = Substitute.For <ISmartNotification>();

            usuarioRepository = new UsuarioRepository((Microsoft.Extensions.Configuration.IConfiguration)configuration);
            usuarioAppService = new UsuarioAppService(smartNotification, usuarioRepository);
        }
Esempio n. 3
0
 public UserAppServices(ISmartNotification notification,
                        IUserRepository userRepository,
                        IProfileRepository profileRepository)
 {
     _userRepository    = userRepository;
     _profileRepository = profileRepository;
     _notification      = notification;
 }
Esempio n. 4
0
 public PersonAppService(
     IPersonDomainService personDomainService,
     IMapper mapper,
     ISmartNotification notification) : base(notification)
 {
     _personDomainService = personDomainService;
     _mapper       = mapper;
     _notification = notification.Invoke();
 }
 public AtorAppService(ISmartNotification notification,
                       IAtorRepositorio atorRepositorio,
                       IUsuarioRepositorio usuarioRepositorio,
                       IGeneroRepositorio generoRepositorio)
 {
     _generoRepositorio  = generoRepositorio;
     _notification       = notification;
     _usuarioRepositorio = usuarioRepositorio;
     _atorRepositorio    = atorRepositorio;
 }
 public ActorAppServices(ISmartNotification notification,
                         IActorRepository actorRepositor,
                         IUserRepository userRepository,
                         IGenreRepository genreRepository)
 {
     _notification    = notification;
     _actorRepository = actorRepositor;
     _userRepository  = userRepository;
     _genreRepository = genreRepository;
 }
Esempio n. 7
0
 public PersonDomainService(
     IPersonRepository personRepository,
     IUnitOfWork unitOfWork,
     INotificationHandler <DomainNotification> messageHandler,
     IRepositoryLog <int> repositoryLog,
     ISmartNotification notification
     ) : base(unitOfWork, personRepository, repositoryLog, messageHandler)
 {
     _personRepository = personRepository;
     _notification     = notification;
 }
 public ProdutorService(ISmartNotification notification, IProdutorRepository produtorRepository)
 {
     _produtorRepository = produtorRepository;
     _notification       = notification;
 }
 public AgendaAppService(ISmartNotification notification,
                         IAgendaRepositorio agendaRepositorio)
 {
     _notification      = notification;
     _agendaRepositorio = agendaRepositorio;
 }
Esempio n. 10
0
 public ElencoAppServices(ISmartNotification notification,
                          IElencoRepository elencoRepository)
 {
     _elencoRepository = elencoRepository;
     _notification     = notification;
 }
Esempio n. 11
0
 public ProducaoService(ISmartNotification notification, IProducaoRepository producaoRepositor)
 {
     _producaoRepository = producaoRepositor;
     _notification       = notification;
 }
Esempio n. 12
0
 public ObraAppService(ISmartNotification notification,
                       IObraRepository obraRepository)
 {
     _obraRepository = obraRepository;
     _notification   = notification;
 }
Esempio n. 13
0
 public ReservationAppService(ISmartNotification notification,
                              IReservationRepository reservationRepository)
 {
     _notification          = notification;
     _reservationRepository = reservationRepository;
 }
Esempio n. 14
0
 public GeneroService(ISmartNotification notification, IGeneroRepository generoRepository)
 {
     _generoRepository = generoRepository;
     _notification     = notification;
 }
Esempio n. 15
0
 public RegisterAppService(IUserRepository UserRepository, ISmartNotification Notification, IProfileRepository ProfileRepository)
 {
     _userRepository    = UserRepository;
     _notification      = Notification;
     _profileRepository = ProfileRepository;
 }
 public UsuarioAppService(ISmartNotification notification, IUsuarioRepositorio usuarioRepositorio, IPerfilRepositorio perfilRepositorio)
 {
     _usuarioRepositorio = usuarioRepositorio;
     _perfilRepositorio  = perfilRepositorio;
     _notification       = notification;
 }
Esempio n. 17
0
 public ArtistaService(ISmartNotification notification, IArtistaRepository artistaRepository)
 {
     _artistaRepository = artistaRepository;
     _notification      = notification;
 }
 public LoginAppService(ISmartNotification notification,
                        IUsuarioRepositorio usuarioRepository)
 {
     _notification       = notification;
     _usuarioRepositorio = usuarioRepository;
 }
Esempio n. 19
0
 public HeroAppService(ISmartNotification notification,
                       IHeroRepository heroRepository)
 {
     _notification   = notification;
     _heroRepository = heroRepository;
 }
Esempio n. 20
0
 public LoginAppServices(ISmartNotification notification,
                         IUserRepository userRepository)
 {
     _notification   = notification;
     _userRepository = userRepository;
 }
Esempio n. 21
0
 public UsuarioAppService(ISmartNotification notification,
                          IUsuarioRepository usuarioRepository)
 {
     _usuarioRepository = usuarioRepository;
     _notification      = notification;
 }
Esempio n. 22
0
 public ReservaService(ISmartNotification notification, IReservaRepository reservaRepository)
 {
     _reservaRepository = reservaRepository;
     _notification      = notification;
 }
Esempio n. 23
0
 public LoginAppService(IUserRepository UserRepository, ISmartNotification Notification)
 {
     _userRepository = UserRepository;
     _notification   = Notification;
 }
 public ProductionAppService(IProductionRepository productionRepository, ISmartNotification Notification, IUserRepository userRepository)
 {
     _productionRepository = productionRepository;
     _notification         = Notification;
     _userRepository       = userRepository;
 }
Esempio n. 25
0
 public BaseValidationService(ISmartNotification notify)
 {
     _notify = notify.Invoke();
 }