public AccountService(
            ISafeClientService safeClientService, IUnsafeClientService unsafeClientService,
            ISafeEmployeeService safeEmployeeService, IUnsafeEmployeeService unsafeEmployeeService,
            IAuthHelper authHelper)
        {
            this.safeClientService   = safeClientService;
            this.unsafeClientService = unsafeClientService;

            this.safeEmployeeService   = safeEmployeeService;
            this.unsafeEmployeeService = unsafeEmployeeService;

            this.authHelper = authHelper;
        }
 public ClientsController(ISafeClientService safeClientService, IUnsafeClientService unsafeClientService)
 {
     this.safeClientService   = safeClientService;
     this.unsafeClientService = unsafeClientService;
 }