using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace RCUHost { public interface IAuthorizationReceiver { void AccreditForHost(IList hostList, DateTime expires); } }