using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PMS.BusinessModels.Account;
using PMS.BusinessModels.Problem;
namespace PMS.Interface.Support
{
public interface ISupport
{
///
/// 登记问题
///
///
///
/// 问题id
///
ProblemStateModel RegisterSupportProblem(ProblemBusinessModel model, UserInfo user, string id,string AssignPerson);
}
}