Refactored DTO class and namespace names from Massdata* to MassData* in DbFirst.Contracts. Updated all relevant application files to use the correct DTO namespaces for Catalogs and MassData. Adjusted _Imports.razor to include new DTO namespaces and removed unused usings. These changes improve code consistency and reduce namespace-related errors.
24 lines
890 B
Plaintext
24 lines
890 B
Plaintext
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using System.Text.Json
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Rendering
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
@using Microsoft.JSInterop
|
|
@using Microsoft.AspNetCore.SignalR.Client
|
|
@using DbFirst.BlazorWebApp
|
|
@using DbFirst.BlazorWebApp.Components
|
|
@using DbFirst.BlazorWebApp.Models.Grid
|
|
@using DbFirst.BlazorWebApp.Services
|
|
@using DevExpress.Blazor
|
|
@using DevExpress.DashboardBlazor
|
|
@using DevExpress.DashboardWeb
|
|
@using DevExpress.Data.Filtering
|
|
@using Microsoft.Extensions.Options
|
|
@using DbFirst.Contracts.Catalogs
|
|
@using DbFirst.Contracts.MassData
|
|
@using DbFirst.Contracts.Layouts
|
|
@using DbFirst.Contracts.Dashboards |