using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Events.Interfaces { public interface IEventHandlerInterface { ICollection GetEvents(string Class, string Method); void FireEvent(string Class, string Method, Guid parameters); } }