public DropDownUtility(ICustomerManager customerManager, IVehicleTypeManager vehicleTypeManager, IRentRequestManager rentRequestManager, IRentAssignManager rentAssignManager)
 {
     _customerManager    = customerManager;
     _vehicleTypeManager = vehicleTypeManager;
     _rentRequestManager = rentRequestManager;
     _rentAssignManager  = rentAssignManager;
 }
Example #2
0
 public RentRequestController(IRentRequestManager rentRequestManager, IMapper mapper, IUtilityManager utility)
 {
     _rentrequestManager = rentRequestManager;
     _mapper             = mapper;
     _utility            = utility;
 }