/// <summary>
 /// Constructor
 /// </summary>
 public WorkLocationBaseController(IWorkLocationService workLocationService)
 {
     if (workLocationService == null)
     {
         throw new ArgumentNullException("workLocationService");
     }
     this.workLocationService = workLocationService;
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 public WorkLocationController(IWorkLocationService workLocationService)
 {
     this.workLocationService = workLocationService;
 }