yavsc/yavscModel/FrontOffice/Catalog/Billing/Price.cs
Paul Schneider 7b0dd0c1e2 * Price.cs:
* Service.cs:
* Price.cs:
* PhysicalProduct.cs: Billing

* SetPrice.cs: Billing


* MyClass.cs:
* ResultPages.cs:
* NpgsqlRoleProvider.cs:
* NpgsqlProfileProvider.cs:
* NpgsqlMembershipProvider.cs: xml doc

* SalesCatalog.csproj: cleanning

* YavscModel.csproj: coding policies
2015-02-18 17:34:26 +01:00

43 lines
675 B
C#

using System;
namespace Yavsc.Model.FrontOffice.Billing
{
/// <summary>
/// Price.
/// </summary>
public class Price: Scalar
{
decimal quantity;
#region implemented abstract members of SalesCatalog.Value
/// <summary>
/// Gets or sets the quantity.
/// </summary>
/// <value>The quantity.</value>
public override object Quantity {
get {
return quantity;
}
set {
quantity = (decimal) value;
}
}
Currency curr;
/// <summary>
/// Gets or sets the unit.
/// </summary>
/// <value>The unit.</value>
public override Unit Unit {
get {
return curr;
}
set {
curr = (Currency)value;
}
}
#endregion
}
}