ApplicationServiceBase.cs 256 B

123456789101112
  1. using Unity;
  2. using VCommon.Ioc;
  3. namespace VCommon.VApplication
  4. {
  5. public abstract class ApplicationServiceBase
  6. {
  7. [Dependency] public IVSession VSession { get; set; }
  8. [Dependency] public IIocManager IocManager { get; set; }
  9. }
  10. }