icustomer.cs

来自「客户关系管理系统 客户关系管理系统」· CS 代码 · 共 19 行

CS
19
字号
using System;
using System.Collections.Generic;
using System.Text;
using MyCRM.Models;

namespace MyCRM.IDAL
{
    public interface ICustomer
    {
        int AddCustomer(Cst_customer customer);
        int UpdateCustomer(Cst_customer customer);
        int DelCustomer(string customerid);
        Cst_customer GetCustomerByCustomerId(string customer);
        List<Cst_customer> GetAllCustomer();
        List<Cst_customer> GetCustomerSelect(string num, string name, string manager, string adr, string level);
       
    }
}

⌨️ 快捷键说明

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