%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /mnt/tnb/Desktop/Tips.Quality.Common.Seeds/bin/Debug/netstandard2.0/
Upload File :
Create Path :
Current File : //mnt/tnb/Desktop/Tips.Quality.Common.Seeds/bin/Debug/netstandard2.0/Tips.Base.Core.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Tips.Base.Core</name>
    </assembly>
    <members>
        <member name="T:Tips.Base.Core.Attributes.PrintObjectAttribute">
            <summary>
            The PrintObjectAttribute
            </summary>
            <seealso cref="T:System.Attribute" />
        </member>
        <member name="T:Tips.Base.Core.Entities.EntityBase">
            <summary>
            Abstract class for entity with basic features like unique ID, comparing by Equals or operators...
            </summary>
        </member>
        <member name="P:Tips.Base.Core.Entities.EntityBase.DomainEvents">
            <summary>Gets DomainEvents</summary>
            <value>The domain events.</value>
        </member>
        <member name="M:Tips.Base.Core.Entities.EntityBase.AddDomainEvent(Tips.Base.Core.Events.IDomainEvent)">
            <summary>Adds the domain event.</summary>
            <param name="eventItem">The event item.</param>
        </member>
        <member name="M:Tips.Base.Core.Entities.EntityBase.RemoveDomainEvent(Tips.Base.Core.Events.IDomainEvent)">
            <summary>Removes the domain event.</summary>
            <param name="eventItem">The event item.</param>
        </member>
        <member name="M:Tips.Base.Core.Entities.EntityBase.ClearDomainEvent">
            <summary>Clears the domain event.</summary>
        </member>
        <member name="M:Tips.Base.Core.Entities.EntityBase.GetAllDomainEvents">
            <summary>Gets all domain events.</summary>
            <returns>All domain events from this entity</returns>
        </member>
        <member name="T:Tips.Base.Core.Entities.IDomainEnity">
            <summary>
            Interace for entity domain entity
            </summary>
        </member>
        <member name="M:Tips.Base.Core.Entities.IDomainEnity.AddDomainEvent(Tips.Base.Core.Events.IDomainEvent)">
            <summary>Adds the domain event.</summary>
            <param name="eventItem">The event item.</param>
        </member>
        <member name="M:Tips.Base.Core.Entities.IDomainEnity.RemoveDomainEvent(Tips.Base.Core.Events.IDomainEvent)">
            <summary>Removes the domain event.</summary>
            <param name="eventItem">The event item.</param>
        </member>
        <member name="M:Tips.Base.Core.Entities.IDomainEnity.ClearDomainEvent">
            <summary>Clears the domain event.</summary>
        </member>
        <member name="M:Tips.Base.Core.Entities.IDomainEnity.GetAllDomainEvents">
            <summary>Gets all domain events.</summary>
            <returns>All domain events from this entity</returns>
        </member>
        <member name="T:Tips.Base.Core.Events.DomainEventAggregator">
            <summary>
             Static class raising a new event which is defined by IDomainEvent interface and it is handled by handler implementing IDomainEventHandler interface.
            This variant is very primitive version of Domain Events patern.
            Usualy contains container to implement IoC(Inversion of Control) pattern - container such as Ninject or CastleWindsor etc.
             It is responsible for finding the right handlers to deal with the IDomainEvent event. There can potentially be more than one and it will find them all.
            </summary>
        </member>
        <member name="F:Tips.Base.Core.Events.DomainEventAggregator.handlerList">
            <summary>
            list for storing registered callbacks for events
            </summary>
        </member>
        <member name="M:Tips.Base.Core.Events.DomainEventAggregator.Register``1(Tips.Base.Core.Events.IDomainEventHandler{``0})">
            <summary>
            Method for registrating requests for domain events
            </summary>
            <typeparam name="TEvent">domain event type</typeparam>
            <param name="iEventHandler">IDomainEventHandler type of event handler</param>
        </member>
        <member name="M:Tips.Base.Core.Events.DomainEventAggregator.ClearCallbacks">
            <summary>
            Method for clearing/reinitializing list of registered callbacks
            </summary>
        </member>
        <member name="M:Tips.Base.Core.Events.DomainEventAggregator.Raise``1(``0)">
            <summary>
            Method for raising event. It also use right handler to process event data.
            </summary>
            <typeparam name="TEvent">Type of fired domain event</typeparam>
            <param name="iTEvent">fired domain event</param>
        </member>
        <member name="T:Tips.Base.Core.Events.IDomainEvent">
            <summary>
            Interface for all domain events. Even empty it serves as contract
            </summary>
        </member>
        <member name="T:Tips.Base.Core.Events.IDomainEventHandler`1">
            <summary>
            Interface for any domain event handlers. Contains method Handle() to process data from specific event.
            Domain event handlers should be situated not in Domain layer, but aroud application or domain service layer.
            </summary>
            <typeparam name="TEvent">type of specific event binded with event handler</typeparam>
        </member>
        <member name="M:Tips.Base.Core.Events.IDomainEventHandler`1.Handle(`0)">
            <summary>Handles the specified domain event.</summary>
            <param name="domainEvent">The domain event.</param>
            TODO change to task
        </member>
        <member name="T:Tips.Base.Core.GenericRepository.IGenericRepository`1">
            <summary>The generic repository.</summary>
            <typeparam name="TEntity">Entity</typeparam>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.GetAll">
            <summary>Gets all of entities from DbSet.</summary>
            <returns>IEnumerable collection with entities</returns>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Add(`0)">
            <summary>Adds the specified entity - ready to insert to database.</summary>
            <param name="entity">Entity to add</param>
            <exception cref="T:System.ArgumentNullException"> if <paramref name="entity"/> is null</exception>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Add(System.Collections.Generic.List{`0})">
            <summary>Adds the specified entity - ready to insert to database.</summary>
            <param name="entityList">collection of entities for adding</param>
            <exception cref="T:System.ArgumentNullException"> if <paramref name="entityList"/> is null</exception>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Any">
            <summary>Determines whether a sequence contains any elements.</summary>
            <returns>
            <see langword="true" /> if the source sequence contains any elements; otherwise, <see langword="false" />.</returns>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Find(System.Object[])">
            <summary>
            Finds an entity with the given primary key values. If an entity with the given
            primary key values exists in the context, then it is returned immediately without
            making a request to the store. Otherwise, a request is made to the store for
            an entity with the given primary key values and this entity, if found, is attached
            to the context and returned. If no entity is found in the context or the store,
            then null is returned.
            </summary>
            <param name="keyValues">The values of the primary key for the entity to be found.</param>:
            <returns>The entity found, or null.</returns>
            <remarks>
            The ordering of composite key values is as defined in the EDM, which is in turn
             as defined in the designer, by the Code First fluent API, or by the DataMember
             attribute.
            </remarks>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Remove(`0)">
            <summary>
            Mark specific entity from DBSet as ready for delete. For persistency SaveChanges() must be invoked.
            </summary>
            <param name="entity">entity for deleting</param>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Remove(System.Collections.Generic.List{`0})">
            <summary>
            Mark specific entities from DBSet as ready for delete. For persistency SaveChanges() must be invoked.
            </summary>
            <param name="entityList">list of entities for deleting</param>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.DeleteObject(`0)">
            <summary>
            Delete specified entity from context even if that entity has asociation, which are not known to EF in that particulary time.
            if you do not want to load entity before removing.
            To make this persistent, SaveChanges method must be called.
            </summary>
            <param name="entity">entity for deleting</param>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Attach(`0)">
            <summary>Attach new entity to DBSet as it would be read from database (without status change).</summary>
            <param name="entity">entity for attaching</param>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Modify(`0)">
            <summary>Updates the specified entity.</summary>
            <param name="entity">The entity.</param>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.GetSql(System.Linq.IQueryable)">
            <summary>Gets SQL Command from IQueryable.</summary>
            <param name="queryable">IQueryable type</param>
            <returns>string with SQL Command</returns>
        </member>
        <member name="M:Tips.Base.Core.GenericRepository.IGenericRepository`1.Reload(`0)">
            <summary>Execute reload entity properties from database and set it as unchanged.</summary>
            <param name="entity"> specific entity for reloading</param>
        </member>
        <member name="T:Tips.Base.Core.Reflection.ReflectionHelper">
            <summary>
            Helper class for handling common reflection tasks.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.Reflection.ReflectionHelper.FindTypeByFullName(System.String)">
            <summary>
            Returns type of object by full name in string format.
            </summary>
            <param name="fullName">full name of object in string format</param>
            <returns>type of object</returns>
        </member>
        <member name="M:Tips.Base.Core.Reflection.ReflectionHelper.FindClassTypeByName(System.String)">
            <summary>
            Returns class type by short name
            </summary>
            <param name="className">Short name of class in string format</param>
            <returns>type of object</returns>
        </member>
        <member name="M:Tips.Base.Core.Reflection.ReflectionHelper.FindClassTypeByNameHere(System.String)">
            <summary>
            Return object type from execuring assembly
            </summary>
            <param name="className">Short name of class in string format</param>
            <returns>type of object</returns>
        </member>
        <member name="M:Tips.Base.Core.Reflection.ReflectionHelper.CreateInstance(System.String)">
            <summary>
            test
            </summary>
            <param name="className">Short name of class in string format</param>
            <returns>instance of object</returns>
        </member>
        <member name="M:Tips.Base.Core.Reflection.ReflectionHelper.GetTypeFromAssemblies(System.String)">
            <summary>
            Gets type of class from assemblies in same application directory
            </summary>
            <param name="className">simple class name</param>
            <returns>type of requested class by name</returns>
        </member>
        <member name="T:Tips.Base.Core.Serialization.Deserializer">
            <summary>Deserializer/// </summary>
        </member>
        <member name="M:Tips.Base.Core.Serialization.Deserializer.Deserialize(System.String,System.Type)">
            <summary>Deserialize/// </summary>
            <param name="input">input</param>
            <param name="targetType">targetType</param>
            <returns>object</returns>
        </member>
        <member name="T:Tips.Base.Core.Serialization.JsonSerializerFactory">
            <summary>JsonSerializerFactory </summary>
        </member>
        <member name="F:Tips.Base.Core.Serialization.JsonSerializerFactory.CamelCaseJsonSerializer">
            <summary>JSON serializer.</summary>
        </member>
        <member name="F:Tips.Base.Core.Serialization.JsonSerializerFactory.NonCamelCaseJsonSerializer">
            <summary>JSON serializer.</summary>
        </member>
        <member name="M:Tips.Base.Core.Serialization.JsonSerializerFactory.GetJsonSerializer(System.Boolean)">
            <summary>Get JSON serializer.</summary>
            <param name="useCamelCase">Determines if the serializer should use camel casing or not.</param>
            <returns>The serializer.</returns>
        </member>
        <member name="M:Tips.Base.Core.Serialization.JsonSerializerFactory.GetJsonSerializerSettings(System.Boolean)">
            <summary>GetJsonSerializerSettings</summary>
            <param name="useCamelCase">useCamelCase</param>
            <returns>JsonSerializerSettings</returns>
        </member>
        <member name="T:Tips.Base.Core.Serialization.Serializer">
            <summary>Serializer</summary>
        </member>
        <member name="M:Tips.Base.Core.Serialization.Serializer.Serialize(System.Object)">
            <summary>Serialize/// </summary>
            <param name="data">data</param>
            <returns>string</returns>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.Code">
            <summary>
            General representation business object unique code
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Code.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Code" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {SkuCodeMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Code.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Code.CodeMaxLength">
            <summary>Gets the maximum length of the code.</summary>
            <value>The maximum length of the code.</value>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Code.op_Equality(Tips.Base.Core.ValueObjects.Code,Tips.Base.Core.ValueObjects.Code)">
            <summary>
            Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
            </summary>
            <param name="obj1">The <see cref="T:System.Object" /> to compare with obj2.</param>
            <param name="obj2">The <see cref="T:System.Object" /> to compare with obj1.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Code.op_Inequality(Tips.Base.Core.ValueObjects.Code,Tips.Base.Core.ValueObjects.Code)">
            <summary>
            Determines whether the specified <see cref="T:System.Object" />, is not equal to this instance.
            </summary>
            <param name="obj1">The <see cref="T:System.Object" /> to compare with obj2.</param>
            <param name="obj2">The <see cref="T:System.Object" /> to compare with obj1.</param>
            <returns>
              <c>false</c> if the specified <see cref="T:System.Object" /> is not equal to this instance; otherwise, <c>true</c>.
            </returns>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Code.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object" /> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Code.GetHashCode">
            <summary>Returns a hash code for this instance.</summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
            </returns>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetIntervalVo">
            <summary>
            Holds and validates the interval to next counter reset.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetIntervalVo.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetIntervalVo" /> class.
            </summary>
            <param name="hours">The interval hours.</param>
            <param name="days">The interval days.</param>
            <param name="months">The interval months.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetIntervalVo.Hours">
            <summary>
            Gets interval hours
            </summary>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetIntervalVo.Days">
            <summary>
            Gets interval days
            </summary>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetIntervalVo.Months">
            <summary>
            Gets interval months
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetVo">
            <summary>
            Holds and validates the datetime when the counter value is reset.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetVo.#ctor(System.DateTime)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeResetVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeInitialVo">
            <summary>
            Holds and validates the Initial value from where incrementation starts.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeInitialVo.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeInitialVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeInitialVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeCurrentVo">
            <summary>
            Holds and validates the Current value which is representing incremental state of template code.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeCurrentVo.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeCurrentVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeCurrentVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeMaximumVo">
            <summary>
            Holds and validates the Maximum value. When reached counter is reset..
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeMaximumVo.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeMaximumVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeMaximumVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeIncrementVo">
            <summary>
            Holds and validates the Template Code Step used as increment of new template code.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeIncrementVo.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeIncrementVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeIncrementVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeFormatVo">
            <summary>
            Holds and validates the Template Code Format
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeFormatVo.MaxLength">
            <summary>
            The maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeFormatVo.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeFormatVo" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Format can't be longer then {MaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeFormatVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeDescriptionVo">
            <summary>
            Holds and validates the Template Code Description
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeDescriptionVo.MaxLength">
            <summary>
            The maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeDescriptionVo.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeDescriptionVo" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Description can't be longer then {MaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeDescriptionVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeVo">
            <summary>
            Holds and validates code generator template code
            </summary>
            <exception cref="T:System.ArgumentException">Permission code can't be null</exception>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeVo.TemplateCodeMaxLength">
            <summary>
            The template code maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeVo.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeVo" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Template code can\'t be null or empty
            or
            Template code can't be longer then {TemplateCodeMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CodeGenerator.TemplateCodeVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyAbbreviationVo">
            <summary>
            Holds and validates company abbreviation
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyAbbreviationVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyAbbreviationVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyAbbreviationVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyAbbreviationVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyAddressVo">
            <summary>
            Holds and validates company address
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyAddressVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyAddressVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyAddressVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyAddressVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyCityVo">
            <summary>
            Holds and validates company city
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyCityVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyCityVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyCityVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyCityVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyCodeVo">
            <summary>
            Holds and validates company code
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyCodeVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyCodeVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyCodeVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyCodeVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyCountryCodeVo">
            <summary>
            Holds and validates company country code
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyCountryCodeVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyCountryCodeVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyCountryCodeVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyCountryCodeVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyLanguageCodeVo">
            <summary>
            Holds and validates company language code
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyLanguageCodeVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyLanguageCodeVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyLanguageCodeVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyLanguageCodeVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyNameVo">
            <summary>
            Holds and validates Company name
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyNameVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyNameVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyNameVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyNameVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CompanyPostNumberVo">
            <summary>
            Holds and validates company postNumber
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CompanyPostNumberVo.ValueMaxLength">
            <summary>
            The maximum length of the Value
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CompanyPostNumberVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CompanyPostNumberVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {ValueMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CompanyPostNumberVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CoreCodeVo">
            <summary>
            Representation of business object unique core code
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CoreCodeVo.CoreCodeMaxLength">
            <summary>
            The name maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CoreCodeVo.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CoreCodeVo" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Code can\'t be null or empty
            or
            Code can't be longer then {CoreCodeMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CoreCodeVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CoreNameVo">
            <summary>
            Holds and validates Core Name
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.CoreNameVo.NameMaxLength">
            <summary>
            The name maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CoreNameVo.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CoreNameVo" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Name can't be longer then {NameMaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CoreNameVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.GradeNameVo">
            <summary>
            Holds and validates grade name.
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.GradeNameVo.GradeNameMaxLength">
            <summary>
            The name maximum length.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.GradeNameVo.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.GradeNameVo" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Grade name can't be longer then {GradeNameMaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.GradeNameVo.Value">
            <summary>
            Gets value of object.
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.ThicknessVo">
            <summary>
            Holds and validates the thickness.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.ThicknessVo.#ctor(System.Double)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.ThicknessVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.ThicknessVo.Value">
            <summary>
            Gets value of object.
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.Description">
            <summary>
            Holds and validates Description
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.Description.MaxLength">
            <summary>
            The maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Description.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Description" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Description can't be longer then {MaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Description.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CoreDiameterVo">
            <summary>
            Holds and validates Diameter
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CoreDiameterVo.#ctor(System.Double)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CoreDiameterVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CoreDiameterVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.Email">
            <summary>
            Holds and validates Email
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.Email.NameMaxLength">
            <summary>
            The name maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Email.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Email" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Email can't be longer then {NameMaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Email.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.FullTextSearch">
            <summary>
            General object for substring/token from full text searching.
            Conditions are no more defined yet.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.FullTextSearch.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.FullTextSearch" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Full text search can\'t be null</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.FullTextSearch.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.FullTextSearch.IsEmpty">
            <summary>Determines whether this instance is empty.</summary>
            <returns>
              <c>true</c> if this instance is empty; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.DensityVo">
            <summary>
            Holds and validates the density.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.DensityVo.#ctor(System.Double)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.DensityVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.DensityVo.Value">
            <summary>
            Gets value of object.
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.ProductCodeVo">
            <summary>
            Holds and validates product code.
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.ProductCodeVo.CodeMaxLength">
            <summary>
            The code maximum length.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.ProductCodeVo.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.ProductCodeVo" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Code can't be longer then {CodeMaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.ProductCodeVo.Value">
            <summary>
            Gets value of object.
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.Id">
            <summary>
            General representation for unique internal identifier.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Id.#ctor(System.Guid)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Id"/> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">ID can\'t have default guid value.</exception>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Id.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Id"/> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Unable to parse ID. ID has to be in valid guid format.
            or
            ID can\'t have default guid value.
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Id.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.GradeCodeVo">
            <summary>
            Holds and validates the grade code.
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.GradeCodeVo.CodeMaxLength">
            <summary>
            The code maximum length.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.GradeCodeVo.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.GradeCodeVo" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Code can't be longer then {CodeMaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.GradeCodeVo.Value">
            <summary>
            Gets value of object.
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.Name">
            <summary>
            Holds and validates Name
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.Name.NameMaxLength">
            <summary>
            The name maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Name.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Name" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Name can't be longer then {NameMaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Name.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.NumberOfResultsLimit">
            <summary>
            Standard input for autocomplete UI box. Specifies maximum number of results to be returned.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.NumberOfResultsLimit.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.NumberOfResultsLimit" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">Number of results limit must be positive number</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.NumberOfResultsLimit.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.GrammageVo">
            <summary>
            Holds and validates the grammage.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.GrammageVo.#ctor(System.Double)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.GrammageVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.GrammageVo.Value">
            <summary>
            Gets value of object.
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.UserCode">
            <summary>
            Holds and validates user code
            </summary>
            <exception cref="T:System.ArgumentException">Permission code can't be null</exception>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.UserCode.UserCodeMaxLength">
            <summary>
            The user group code maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.UserCode.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.UserCode" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            User code can\'t be null or empty
            or
            User code can't be longer then {UserCodeMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.UserCode.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.DayIndex">
            <summary>
            General representation for shift cycle day index
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.DayIndex.#ctor(System.Int32)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.DayIndex"/> class.</summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.DayIndex.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.Oid">
            <summary>
            General representation for unique internal identifier.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Oid.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Oid" /> class.</summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">OID can\'t be null or empty</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Oid.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.Time">
            <summary>
            General representation for time.
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.Time.#ctor(System.DateTime)">
            <summary>Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.Time"/> class.</summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.Time.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.TimeSpanVO">
            <summary>General representation for unique internal identifier.</summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.TimeSpanVO.#ctor(System.DateTime,System.DateTime)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.TimeSpanVO"/> class.
            </summary>
            <param name="startTime">The start time.</param>
            <param name="endTime">The endTime.</param>
            <exception cref="T:System.ArgumentException">
            StartTime can\'t have default value. - startTime
            or
            EndTime can\'t have default value. - endTime
            or
            EndTime has to be set to later date/time then startTime. - endTime
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.TimeSpanVO.StartTime">
            <summary>Gets the start time.</summary>
            <value>The start time.</value>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.TimeSpanVO.EndTime">
            <summary>Gets the end time.</summary>
            <value>The end time.</value>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.UserGroupCode">
            <summary>
            Holds and validates user group code
            </summary>
            <exception cref="T:System.ArgumentException">Permission code can't be null</exception>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.UserGroupCode.UserGroupCodeMaxLength">
            <summary>
            The user group code maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.UserGroupCode.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.UserGroupCode" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            User group code can\'t be null or empty
            or
            User group code can't be longer then {UserGroupCodeMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.UserGroupCode.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.UserName">
            <summary>
            Holds and validates User Name and Surname (not for login, but as user info)
            </summary>
            <exception cref="T:System.ArgumentException">Permission code can't be null</exception>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.UserName.UserNameMaxLength">
            <summary>
            The user group code maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.UserName.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.UserName" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">User Name can't be longer then {UserNameMaxLength}</exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.UserName.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CoreWeightVo">
            <summary>
            Holds and validates Weight
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CoreWeightVo.#ctor(System.Double)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CoreWeightVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CoreWeightVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.CoreWidthVo">
            <summary>
            Holds and validates Width
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.CoreWidthVo.#ctor(System.Double)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.CoreWidthVo" /> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.CoreWidthVo.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
        <member name="T:Tips.Base.Core.ValueObjects.WorkstationCode">
            <summary>
            Holds and validates Workstation code limited by length
            </summary>
        </member>
        <member name="F:Tips.Base.Core.ValueObjects.WorkstationCode.WorkstationCodeMaxLength">
            <summary>
            The  Workstation code maximum length
            </summary>
        </member>
        <member name="M:Tips.Base.Core.ValueObjects.WorkstationCode.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Tips.Base.Core.ValueObjects.WorkstationCode" /> class.
            </summary>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentException">
            Workstation code can\'t be null or empty
            or
            Workstation code can't be longer then {WorkstationCodeMaxLength}
            </exception>
        </member>
        <member name="P:Tips.Base.Core.ValueObjects.WorkstationCode.Value">
            <summary>
            Gets value of object
            </summary>
        </member>
    </members>
</doc>

Zerion Mini Shell 1.0