ServiceSelectorAttribute.cs 307 B

123456789101112131415
  1. using System;
  2. namespace SRF.Service
  3. {
  4. [AttributeUsage(AttributeTargets.Method)]
  5. public sealed class ServiceSelectorAttribute : Attribute
  6. {
  7. public ServiceSelectorAttribute(Type serviceType)
  8. {
  9. this.ServiceType = serviceType;
  10. }
  11. public Type ServiceType { get; private set; }
  12. }
  13. }