Ejemplo n.º 1
0
 public RestoransController(RestoransRepository restoransRepository, IMapper mapper, BronRestoRepository bronRestoRepository, BronRestoBusiness bronRestoBusiness)
 {
     _restoransRepository = restoransRepository;
     MapResto             = mapper;
     _bronRestoRepository = bronRestoRepository;
     _bronRestoBusiness   = bronRestoBusiness;
 }
Ejemplo n.º 2
0
 public AdminsRestoController(RestoransRepository restoransRepository, IAdminRestoRepository adminRestoRepository,
                              IUserService userService, AdminRestoService adminRestoService)
 {
     _restoransRepository  = restoransRepository;
     _adminRestoRepository = adminRestoRepository;
     UserService           = userService;
     AdminRestoService     = adminRestoService;
 }
Ejemplo n.º 3
0
 public BronRestoBusiness(RestoransRepository restoransRepository, IMapper mapper, BronRestoRepository bronRestoRepository)
 {
     _restoransRepository = restoransRepository;
     MapResto             = mapper;
     _bronRestoRepository = bronRestoRepository;
 }