Introduces MassData management to backend and Blazor frontend: - Adds API endpoint for MassData count and paging - Updates repository and controller for count support - Implements MediatR query/handler for count - Adds Blazor page and grid for viewing/editing MassData - Registers MassDataApiClient and integrates with DI - Supports paging, upsert, and UI feedback in grid
10 lines
271 B
C#
10 lines
271 B
C#
namespace DbFirst.BlazorWasm.Models;
|
|
|
|
public class MassDataWriteDto
|
|
{
|
|
public string CustomerName { get; set; } = string.Empty;
|
|
public decimal Amount { get; set; }
|
|
public string Category { get; set; } = string.Empty;
|
|
public bool StatusFlag { get; set; }
|
|
}
|