using QWPlatform.IService; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using PMS.DBService; using PMS.BusinessModels.ProManager; using PMS.EntityModels.PersonManager; using QWPlatform.SystemLibrary; using PMS.BusinessModels.Product; using PMS.BusinessModels.Project; using PMS.BusinessModels; using QWPlatform.SystemLibrary.LogManager; using QWPlatform.SystemLibrary.Utils; using PMS.Interface.Support; using PMS.BusinessModels.Account; using PMS.BusinessModels.Problem; using PMS.DBService.SupportManager; namespace PMS.BusinessService.SupportManager { public class SupportBuiness : ISupport { //提供SupportDBservice的数据服务 private SupportDBservice DB_SupportService = DataServiceBase.Instance(); //技术支持登记问题 public ProblemStateModel RegisterSupportProblem(ProblemBusinessModel model, UserInfo user, string id,string AssignPerson) { return DB_SupportService.RegisterSupportProblem(model, user, id, AssignPerson); } } }