public DropDownUtility(ICustomerManager customerManager, IVehicleTypeManager vehicleTypeManager, IRentRequestManager rentRequestManager, IRentAssignManager rentAssignManager)
 {
     _customerManager    = customerManager;
     _vehicleTypeManager = vehicleTypeManager;
     _rentRequestManager = rentRequestManager;
     _rentAssignManager  = rentAssignManager;
 }
Exemplo n.º 2
0
 public RentAssignController(IRentAssignManager rentAssignManager, IMapper mapper, IUtilityManager utilityManager, INotificationManager notificationManager)
 {
     _rentAssignManager   = rentAssignManager;
     _mapper              = mapper;
     _utilityManager      = utilityManager;
     _notificationManager = notificationManager;
 }