Innovt Platform
Search Results for

    Show / Hide Table of Contents

    Class Gender

    Represents a gender domain model.

    Inheritance
    object
    ValueObject
    DomainModel<Gender>
    Gender
    Inherited Members
    DomainModel<Gender>.AddModel(Gender)
    DomainModel<Gender>.FindAll()
    DomainModel<Gender>.GetByPk(int)
    ValueObject.Id
    ValueObject.Equals(object)
    ValueObject.GetHashCode()
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Innovt.Domain.Users
    Assembly: Innovt.Domain.dll
    Syntax
    public class Gender : DomainModel<Gender>

    Constructors

    | Edit this page View Source

    Gender()

    Initializes a new instance of the Gender class.

    Declaration
    public Gender()
    | Edit this page View Source

    Gender(int, char, string)

    Initializes a new instance of the Gender class with the specified parameters.

    Declaration
    public Gender(int id, char acronym, string description)
    Parameters
    Type Name Description
    int id

    The unique identifier for the gender.

    char acronym

    The acronym representing the gender.

    string description

    The description of the gender.

    Fields

    | Edit this page View Source

    Female

    Declaration
    public static Gender Female
    Field Value
    Type Description
    Gender
    | Edit this page View Source

    Male

    Declaration
    public static Gender Male
    Field Value
    Type Description
    Gender

    Properties

    | Edit this page View Source

    Acronym

    Gets or sets the acronym representing the gender.

    Declaration
    public char Acronym { get; set; }
    Property Value
    Type Description
    char
    | Edit this page View Source

    Description

    Gets or sets the description of the gender.

    Declaration
    public string Description { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    Extensions.IsNull(object)
    Extensions.ToStringOrDefault(object)
    SimpleMapper.MapTo<T1>(object)
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX