14 lines
338 B
C#
14 lines
338 B
C#
using TIAMWebApp.Shared.Application.Interfaces;
|
|
using TIAMWebApp.Shared.Application.Services;
|
|
|
|
namespace TIAMWebApp.Client.Services
|
|
{
|
|
public class ComponentUpdateServiceWeb : ComponentUpdateServiceBase
|
|
{
|
|
public override void CallRequestRefreshAll()
|
|
{
|
|
base.CallRequestRefreshAll();
|
|
}
|
|
}
|
|
}
|