Exemplo n.º 1
0
 public BouquetController(IFloraRepository repo, IMapper mapper)
 {
     this._mapper = mapper;
     this._repo   = repo;
 }
Exemplo n.º 2
0
 public FloraService(IFloraRepository repository)
 {
     floraRepository = repository;
 }
Exemplo n.º 3
0
 public MaterialController(IFloraRepository repo, IMapper mapper)
 {
     this._mapper = mapper;
     this._repo   = repo;
 }
Exemplo n.º 4
0
 public FloraService()
 {
     floraRepository = new FloraRepositoryDb();
 }