Exemple #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public NrtTypeBaseController(INrtTypeService nrtTypeService)
 {
     if (nrtTypeService == null)
     {
         throw new ArgumentNullException("nrtTypeService");
     }
     this.nrtTypeService = nrtTypeService;
 }
Exemple #2
0
 /// <summary>
 /// INrt Type Constructor
 /// </summary>>
 public NrtTypeController(INrtTypeService nrtTypeService)
 {
     this.nrtTypeService = nrtTypeService;
 }