Northwind.EntityFramework.ModelFirst.Oracle.Shippers.CreateShippers C# (CSharp) Метод

CreateShippers() публичный статический Метод

Create a new Shippers object.
public static CreateShippers ( int shipperID ) : Shippers
shipperID int Initial value of ShipperID.
Результат Shippers
        public static Shippers CreateShippers(int shipperID)
        {
            Shippers shippers = new Shippers();
            shippers.ShipperID = shipperID;
            return shippers;
        }