ISupport.cs 639 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using PMS.BusinessModels.Account;
  8. using PMS.BusinessModels.Problem;
  9. namespace PMS.Interface.Support
  10. {
  11. public interface ISupport
  12. {
  13. /// <summary>
  14. /// 登记问题
  15. /// </summary>
  16. /// <param name="model"></param>
  17. /// <param name="user"></param>
  18. /// <param name="id">问题id</param>
  19. /// <returns></returns>
  20. ProblemStateModel RegisterSupportProblem(ProblemBusinessModel model, UserInfo user, string id,string AssignPerson);
  21. }
  22. }