コード例 #1
0
 public FinanceiroService(IFinanceiroRepository financeiroRepository)
 {
     _financeiroRepository = financeiroRepository;
 }
コード例 #2
0
 public FinanceiroAptoParaCadastroValidation(IFinanceiroRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<Financeiro>(Instance of RuleClassName,"message for user"));
 }
コード例 #3
0
 public FinanceiroService(IFinanceiroRepository repository)
 {
     this.repository = repository;
 }
コード例 #4
0
 public FinanceiroMoreController(IFinanceiroRepository rep, IFinanceiroApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <FinanceiroMoreController>();
 }
コード例 #5
0
 public FinanceiroServiceBase(IFinanceiroRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
コード例 #6
0
 public FinanceiroService(IFinanceiroRepository rp)
 {
     _financeiroRepository = rp;
 }
コード例 #7
0
 public FinanceiroService(IFinanceiroRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
コード例 #8
0
 public FinanceiroController(IFinanceiroRepository contexto)
 {
     _contexto = contexto;
 }