public LocalizedStringProvider(
     IApplicationContext appContext,
     IAssemblyTypeTextListFactory assemblyTypeTextListFactory
     )
 {
     if (appContext == null)
         throw new ArgumentNullException("appContext");
     if (assemblyTypeTextListFactory == null)
         throw new ArgumentNullException("assemblyTypeTextListFactory");
     this.appContext = appContext;
     this.assemblyTypeTextListFactory = assemblyTypeTextListFactory;
 }
 public LocalizedStringProvider(
     IApplicationContext appContext,
     IAssemblyTypeTextListFactory assemblyTypeTextListFactory
     )
 {
     if (appContext == null)
     {
         throw new ArgumentNullException("appContext");
     }
     if (assemblyTypeTextListFactory == null)
     {
         throw new ArgumentNullException("assemblyTypeTextListFactory");
     }
     this.appContext = appContext;
     this.assemblyTypeTextListFactory = assemblyTypeTextListFactory;
 }