Prizm.Main.PrizmModule.Load C# (CSharp) Method

Load() public method

public Load ( ) : void
return void
        public override void Load()
        {
            #region Repository
            Bind<ISession>().ToMethod(_ => HibernateUtil.OpenSession(true));

            Bind<IReleaseNoteRepository>().To<ReleaseNoteRepository>();
            Bind<IRailcarRepository>().To<RailcarRepository>();
            Bind<IPipeRepository>().To<PipeRepository>();
            Bind<IHeatRepository>().To<HeatRepository>();
            Bind<IPlateRepository>().To<PlateRepository>();
            Bind<IAuditLogRepository>().To<AuditLogRepository>();
            Bind<IPurchaseOrderRepository>().To<PurchaseOrderRepository>();
            Bind<IWeldRepository>().To<WeldRepository>();
            Bind<IWelderRepository>().To<WelderRepository>();
            Bind<IPipeTestResultRepository>().To<PipeTestResultRepository>();
            Bind<IMillPipeSizeTypeRepository>().To<MillPipeSizeTypeRepository>();
            Bind<IPipeTestRepository>().To<PipeTestRepository>();
            Bind<IMillRepository>().To<MillRepository>();
            Bind<IJointOperationRepository>().To<JointOperationRepository>();

            Bind<ISettingsRepositories>().To<SettingsRepositories>();
            Bind<IReleaseNoteRepositories>().To<ReleaseNoteRepositories>();
            Bind<IHeatRepositories>().To<HeatRepositories>();
            Bind<IProjectRepository>().To<ProjectRepository>();
            Bind<ICategoryRepository>().To<CategoryRepository>();
            Bind<IMillReportsRepository>().To<MillReportsRepository>();
            Bind<IUserRepository>().To<UserRepository>();
            Bind<IRoleRepository>().To<RoleRepository>();
            Bind<IPermissionRepository>().To<PermissionRepository>();
            Bind<IConstructionRepository>().To<ConstructionRepository>();
            Bind<IJointRepository>().To<JointRepository>();

            Bind<IFirstSetupRepo>().To<FirstSetupRepo>();
            
            Bind<IComponentRepositories>().To<ComponentRepositories>();
            Bind<IComponentTypeRepository>().To<ComponentTypeRepository>();
            Bind<IComponentRepository>().To<ComponentRepository>();
            Bind<ISpoolRepository>().To<SpoolRepository>();
            Bind<ISpoolRepositories>().To<SpoolRepositories>();
            Bind<IJointTestResultRepository>().To<JointTestResultRepository>();
            Bind<IJointWeldResultRepository>().To<JointWeldResultRepository>();
            Bind<IInspectorRepository>().To<InspectorRepository>();
            Bind<IFileRepository>().To<FileRepository>();
            Bind<IInspectionTestResultRepository>().To<InspectionTestResultRepository>();
            Bind<IPartInspectionRepository>().To<PartInspectionRepository>();
            Bind<INotificationRepository>().To<NotificationRepository>();
            Bind<IPortionRepository>().To<PortionRepository>();
            Bind<IExportRepository>().To<ExportRepository>();
            Bind<IImportRepository>().To<ImportRepository>();
            Bind<IExternalFilesRepositories>().To<ExternalFilesRepositories>();
            Bind<ICannedMessageRepository>().To<CannedMessageRepository>();
            Bind<IAuditRepository>().To<AuditRepository>();
            
            // TODO: remove TemporaryContext after binding to real context.
            Bind<Prizm.Main.Security.ISecurityContext>().To<SecurityContext>().InSingletonScope();

            #endregion

            #region ViewModel
            Bind<HeatViewModel>().ToSelf();
            Bind<PurchaseOrderViewModel>().ToSelf();
            Bind<ReleaseNoteViewModel>().ToSelf();
            Bind<MillPipeSearchViewModel>().ToSelf();
            Bind<MillPipeNewEditViewModel>().ToSelf();
            Bind<ReleaseNoteSearchViewModel>().ToSelf();
            Bind<SettingsViewModel>().ToSelf();
            Bind<MillReportsViewModel>().ToSelf();
            Bind<PrizmApplicationViewModel>().ToSelf();
            Bind<JointNewEditViewModel>().ToSelf();
	        Bind<JointSearchViewModel>().ToSelf();
            Bind<PartSearchViewModel>().ToSelf();
            Bind<FirstSetupViewModel>().ToSelf();
            Bind<SpoolViewModel>().ToSelf();
            Bind<ExternalFilesViewModel>().ToSelf();
            Bind<PipeConstractionReportViewModel>().ToSelf();
            Bind<WeldDateReportViewModel>().ToSelf();
            #endregion

            #region Forms Binding
            Bind<MillPipeNewEditXtraForm>().ToSelf();
            Bind<ReleaseNoteNewEditXtraForm>().ToSelf();
            Bind<MillPipeSearchXtraForm>().ToSelf();
            Bind<MillReportsXtraForm>().ToSelf();
            Bind<ComponentNewEditXtraForm>().ToSelf();
            Bind<InspectionReportsXtraForm>().ToSelf();
            Bind<JointNewEditXtraForm>().ToSelf();
            Bind<JointSearchXtraForm>().ToSelf();
            Bind<ConstructionReportsXtraForm>().ToSelf();
            Bind<SettingsXtraForm>().ToSelf();
            Bind<ReleaseNoteSearchXtraForm>().ToSelf();
            Bind<SpoolsXtraForm>().ToSelf();
            Bind<HeatXtraForm>().ToSelf();
            Bind<PurchaseOrderXtraForm>().ToSelf();
            Bind<AuditXtraForm>().ToSelf();
            Bind<PartSearchXtraForm>().ToSelf();
            Bind<FirstSetupXtraForm>().ToSelf();
            Bind<ExternalFilesXtraForm>().ToSelf();
            Bind<ExportForm>().ToSelf();
            Bind<ImportForm>().ToSelf();
            Bind<PipeConstractionReportXtraForm>().ToSelf();
            Bind<WeldDateReportXtraForm>().ToSelf();
            Bind<HistoryExportImport>().ToSelf();
            #endregion

            #region Commands
            Bind<JointSearchCommand>().ToSelf(); 
            #endregion

            Bind<IUserNotify>().ToMethod<PrizmApplicationXtraForm>(context => Program.MainForm).InSingletonScope();
            Bind<AuditInterceptor>().ToSelf();

            #region Synch
            
            Bind<IEncryptor>().To<Encryptor>();
            Bind<IHasher>().To<Hasher>();
            Bind<DataExporter>().ToSelf();
            
            #endregion

        }
    }
PrizmModule