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