Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

RequestQuote.cs

using Nop.Core;

namespace Nop.Plugin.Misc.RFQ.Domains;

/// 
/// Represents a request a quote entity
/// 
public class RequestQuote : BaseEntity, IAdminNote
{
    /// 
    /// Gets or sets the customer identifier
    /// 
    public int CustomerId { get; set; }

    /// 
    /// Gets or sets the created date and time
    /// 
    public DateTime CreatedOnUtc { get; set; }

    /// 
    /// Gets or sets the request status identifier
    /// 
    public int StatusId { get; set; }

    /// 
    /// Gets or sets the request a quote identifier
    /// 
    public int? QuoteId { get; set; }

    /// 
    /// Gets or sets the customer notes
    /// 
    public string CustomerNotes { get; set; }

    /// 
    /// Gets or sets the administration notes
    /// 
    public string AdminNotes { get; set; }

    /// 
    /// Gets or sets the request status
    /// 
    public RequestQuoteStatus Status
    {
        get => (RequestQuoteStatus)StatusId;
        set => StatusId = (int)value;
    }
}