Castle.MonoRail.Framework.Configuration.ServiceEntryCollection.RegisterService C# (CSharp) Method

RegisterService() public method

Registers the service.
public RegisterService ( ServiceIdentification id, Type service ) : void
id ServiceIdentification The id.
service System.Type The service.
return void
		public void RegisterService(ServiceIdentification id, Type service)
		{
			RegisterService(ToInterface(id), service);
		}

Same methods

ServiceEntryCollection::RegisterService ( Type inter, Type service ) : void