Beispiel #1
0
		public RequestDetailsController(
			IRequestDetailsService requestDetailsService,
			ILetterOfEngagementService letterOfEngagementService,
			IOrderManager orderManager,
			IAppraiserUserService appraiserService,
			IAppraiserOrderDeliveryService orderDeliveryService)
		{
			_requestDetailsService = ValidationUtil.CheckOnNullAndThrowIfNull(requestDetailsService);
			_letterOfEngagementService = ValidationUtil.CheckOnNullAndThrowIfNull(letterOfEngagementService);
			_orderManager = ValidationUtil.CheckOnNullAndThrowIfNull(orderManager);
			_appraiserService = ValidationUtil.CheckOnNullAndThrowIfNull(appraiserService);
			_orderDeliveryService = ValidationUtil.CheckOnNullAndThrowIfNull(orderDeliveryService);
		}
Beispiel #2
0
 public BookBorrowingRequestController(IRequestService brr, IRequestDetailsService brrd)
 {
     _brr  = brr;
     _brrd = brrd;
 }
Beispiel #3
0
 public BBRDController(IRequestDetailsService brrd)
 {
     _brrd = brrd;
 }