Bzs.Portable.DataTransferObjects.Teacher.TeacherEditDto.TeacherEditDto C# (CSharp) Method

TeacherEditDto() public method

Initializes a new instance of the TeacherEditDto class.
public TeacherEditDto ( System.Guid id, string code, string caption ) : System
id System.Guid The identifier.
code string The code.
caption string The caption.
return System
        public TeacherEditDto(Guid id, string code, string caption)
            : base(id)
        {
            this.Code = code;
            this.Caption = caption;
        }

Same methods

TeacherEditDto::TeacherEditDto ( ) : System
TeacherEditDto