예제 #1
0
 public IList<Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel> getBooksellerSource(CPMis.Web.WebClient.ProfileManger profileManager)
 {
     IList<Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel> list = new List<Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel>();
     //如果登录的是教务处角色用户
     if (profileManager.RoleName == CPMis.Common.ParameterList.ReportViews.Roles.ACADEMIC)
     {
         return _booksellerBLL.Fn_CheckBooksellerName();
     }
      //如果登录的书商角色用户
     else if(profileManager.RoleName==CPMis.Common.ParameterList.ReportViews.Roles.BOOKSELLER){
         Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel bookseller = new Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel();
         bookseller.BooksellerID = profileManager.UserInGroupID;
         bookseller.BooksellerName = _booksellerInfoBLL.Fn_GetBooksellerInfo(bookseller.BooksellerID).BooksellerName;
         list.Add(bookseller);
     }
     return list;
 }
        public IList <Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel> getBooksellerSource(CPMis.Web.WebClient.ProfileManger profileManager)
        {
            IList <Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel> list = new List <Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel>();

            //如果登录的是教务处角色用户
            if (profileManager.RoleName == CPMis.Common.ParameterList.ReportViews.Roles.ACADEMIC)
            {
                return(_booksellerBLL.Fn_CheckBooksellerName());
            }
            //如果登录的书商角色用户
            else if (profileManager.RoleName == CPMis.Common.ParameterList.ReportViews.Roles.BOOKSELLER)
            {
                Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel bookseller = new Model.Tb_Maintain.Tb_Maintain_3.BooksellerModel();
                bookseller.BooksellerID   = profileManager.UserInGroupID;
                bookseller.BooksellerName = _booksellerInfoBLL.Fn_GetBooksellerInfo(bookseller.BooksellerID).BooksellerName;
                list.Add(bookseller);
            }
            return(list);
        }