IEvaluatingService.cs 256 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using TEAMModelOS.Service.Core.Interfaces;
  5. namespace TEAMModelOS.Service.Evaluation.Interfaces
  6. {
  7. public interface IEvaluatingService : IBusinessService, IBaseService
  8. {
  9. }
  10. }