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