public static void DalDependenciesResolver(this IServiceCollection services, IConfiguration configuration)
        {
            services.AddDbContext <WarehouseContext>(
                options => options.UseSqlServer(VaultHandler.GetDbDataFromVault()));

            services.AddScoped <DbContext, WarehouseContext>();
            services.AddScoped <IUoW, EfUoW>();

            services.AddScoped <IBrandRepository, BrandRepository>();
        }