Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public GetAdditionalChargeForNrtController(INRTService nrtService)
 {
     if (nrtService == null)
     {
         throw new ArgumentNullException("nrtService");
     }
     this.nrtService = nrtService;
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 public NRTBaseController(INRTService nrtService)
 {
     if (nrtService == null)
     {
         throw new ArgumentNullException("nrtService");
     }
     this.nrtService = nrtService;
 }
Example #3
0
        /// <summary>
        /// Constructor
        /// </summary>
        public GetNrtDetailController(INRTService nrtService)
        {
            if (nrtService == null && !ModelState.IsValid)
            {
                throw new ArgumentNullException("nrtService");
            }

            this.nrtService = nrtService;
        }