示例#1
0
 public FinancialMovimentService(
     FinancialMovimentRepository repository,
     CategoryService categoryService,
     PersonService personService,
     INotification notification
     ) : base(notification)
 {
     this._repository      = repository;
     this._categoryService = categoryService;
     this._personService   = personService;
 }
 public FinancialMovimentService(FinancialMovimentRepository repository, INotification notification) : base(notification)
 {
     this._repository = repository;
 }