DataAccess.centro.Createcentro C# (CSharp) Method

Createcentro() public static method

Create a new centro object.
public static Createcentro ( global id, global lugar, global siguiente_expediente ) : centro
id global Initial value of the id property.
lugar global Initial value of the lugar property.
siguiente_expediente global Initial value of the siguiente_expediente property.
return centro
        public static centro Createcentro(global::System.Int64 id, global::System.String lugar, global::System.Decimal siguiente_expediente)
        {
            centro centro = new centro();
            centro.id = id;
            centro.lugar = lugar;
            centro.siguiente_expediente = siguiente_expediente;
            return centro;
        }