public RentController(IRentAppService _rentApp, IUserAppService _userApp, IRoomAppService _roomApp, IMapper _mapper)
 {
     rentApp = _rentApp;
     userApp = _userApp;
     roomApp = _roomApp;
     mapper  = _mapper;
 }
Exemplo n.º 2
0
 public RentController(IRentAppService RentAppService, IRentItemAppService RentItemAppService)
 {
     _RentAppService     = RentAppService;
     _RentItemAppService = RentItemAppService;
 }
Exemplo n.º 3
0
 public RentController(IMapper mapper, IRentAppService rentAppService)
 {
     _mapper         = mapper;
     _rentAppService = rentAppService;
 }