protected override void Register(IDenpendencyContainer container)
        {
            container.AddComponent<IA, A>(string.Empty, ComponentServiceLifetime.LifetimeScope);

            container.AddComponent<IDataBaseContext, TestContext>(string.Empty, ComponentServiceLifetime.LifetimeScope);
            container.AddComponent<IStudentRepository, StudentRepository>("", ComponentServiceLifetime.LifetimeScope);
            container.AddComponent<ITecherRepository, TecherRepository>("", ComponentServiceLifetime.LifetimeScope);
        }