* 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
This commit is contained in:
Paul Schneider 2015-02-18 17:34:26 +01:00
commit 7b0dd0c1e2
11 changed files with 457 additions and 54 deletions

View file

@ -1,50 +0,0 @@
using System;
namespace Yavsc.Model.FrontOffice
{
/// <summary>
/// Price.
/// </summary>
public class Price: Scalar
{
/// <summary>
/// Initializes a new instance of the <see cref="Yavsc.Model.FrontOffice.Price"/> class.
/// </summary>
public Price ()
{
}
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
}
}