15 lines
404 B
C#
15 lines
404 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.CashRegister.Components;
|
|
|
|
/// <summary>
|
|
/// ViewComponent for displaying period payment figures.
|
|
/// Shows system values vs. optional control values for different payment types.
|
|
/// </summary>
|
|
public class PeriodRevenueViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View();
|
|
}
|
|
}
|