Esempio n. 1
0
 public RestoransController(RestoransRepository restoransRepository, IMapper mapper, BronRestoRepository bronRestoRepository, BronRestoBusiness bronRestoBusiness)
 {
     _restoransRepository = restoransRepository;
     MapResto             = mapper;
     _bronRestoRepository = bronRestoRepository;
     _bronRestoBusiness   = bronRestoBusiness;
 }
Esempio n. 2
0
 public BronRestoBusiness(RestoransRepository restoransRepository, IMapper mapper, BronRestoRepository bronRestoRepository)
 {
     _restoransRepository = restoransRepository;
     MapResto             = mapper;
     _bronRestoRepository = bronRestoRepository;
 }