11 lines
324 B
C#
11 lines
324 B
C#
using Microsoft.SelfService.Portal.Core.API.Models;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Events.Interfaces
|
|
{
|
|
public interface IEventHandlerInterface
|
|
{
|
|
ICollection<EventModel> GetEvents(string Class, string Method);
|
|
void FireEvent(string Class, string Method, Guid parameters);
|
|
}
|
|
}
|