Exemple #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public HireGroupBaseController(IHireGroupService hireGroupService)
 {
     if (hireGroupService == null)
     {
         throw new ArgumentNullException("hireGroupService");
     }
     this.hireGroupService = hireGroupService;
 }
Exemple #2
0
        /// <summary>
        /// Constructor
        /// </summary>
        public RentalAgreementHireGroupsController(IHireGroupService hireGroupService)
        {
            if (hireGroupService == null)
            {
                throw new ArgumentNullException("hireGroupService");
            }

            this.hireGroupService = hireGroupService;
        }
        /// <summary>
        /// Constructor
        /// </summary>
        public GetHireGroupDetailDataController(IHireGroupService hireGroupService)
        {
            if (hireGroupService == null)
            {
                throw new ArgumentNullException("hireGroupService");
            }

            this.hireGroupService = hireGroupService;
        }