Example #1
0
        public AlugarJogoService(IAlugadoDao alugadoDao, ISender sender)
        {
            _alugadoDao = alugadoDao;
            _sender     = sender;

            this.TopicName = UtilitiesConfig.GetAppSetting("AlugarJogoTopic");
        }
Example #2
0
 public DevolverJogoService(IAlugadoDao alugadoDao)
 {
     _alugadoDao = alugadoDao;
 }