MVC-CZBK.ItcastOA.IBLL.IUserInfoService

using CZBK.ItcastOA.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CZBK.ItcastOA.IBLL
{
   public interface IUserInfoService:IBaseService<UserInfo>
    {

        bool DeleteEntities(List<int> list);
        IQueryable<UserInfo> LoadSearchEntities(UserInfoSearch userInfoSearch, short delFlag);

    }
}
 

猜你喜欢

转载自blog.csdn.net/dxm809/article/details/87520430
MVC