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

📄 supplierscollection.cs

📁 简单的cI真的是很简单 你想要就下载吧
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace VinciDataAccess.Entity
{
    /// <summary>
    /// Name:Wicresoft's Vinci Item
    /// Author:Owen Liu
    /// Time:2008.2.20
    public class SuppliersCollection:CollectionBase
    {

        public SuppliersEntity this[int nIndex]
        {
            get { return (SuppliersEntity)List[nIndex]; }
            set { List[nIndex] = value; }
        }

        public int Add(SuppliersEntity SuppliersInfo)
        {
            return (List.Add(SuppliersInfo));
        }

        public int IndexOf(SuppliersEntity SuppliersInfo)
        {
            return (List.IndexOf(SuppliersInfo));
        }

        public void Insert(int nIndex, SuppliersEntity SuppliersInfo)
        {
            List.Insert(nIndex, SuppliersInfo);
        }

        public void Remove(SuppliersEntity SuppliersInfo)
        {
            List.Remove(SuppliersInfo);
        }
    }
}

⌨️ 快捷键说明

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