⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ilost.cs

📁 客户关系管理系统 客户关系管理系统
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
using MyCRM.Models;
namespace MyCRM.IDAL
{
    public interface ILost
    {
         List<Cst_lost> GetAllLost();
         Cst_lost GetLostByLostId(int lostid);
        int Update(Cst_lost lost);
        List<Cst_lost> GetLostSelect(string name, string manager, string level);
         List<Cst_lost> GetLost();
        List<Cst_lost> GetLosSelect(string name, string title);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -