Ejemplo n.º 1
0
        public SpecialityViewModel(Speciality speciality)
        {
            if (speciality == null)
            {
                throw new ArgumentNullException("speciality");
            }

            this.Model = speciality;
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a new Speciality object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="code">Initial value of the Code property.</param>
 /// <param name="sourceId">Initial value of the SourceId property.</param>
 public static Speciality CreateSpeciality(global::System.Guid id, global::System.String name, global::System.String code, global::System.Int32 sourceId)
 {
     Speciality speciality = new Speciality();
     speciality.Id = id;
     speciality.Name = name;
     speciality.Code = code;
     speciality.SourceId = sourceId;
     return speciality;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Specialities EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSpecialities(Speciality speciality)
 {
     base.AddObject("Specialities", speciality);
 }