* 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:
parent
6dfe83308e
commit
7b0dd0c1e2
11 changed files with 457 additions and 54 deletions
40
yavscModel/FrontOffice/Catalog/Billing/SetPrice.cs
Normal file
40
yavscModel/FrontOffice/Catalog/Billing/SetPrice.cs
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
//
|
||||
// ServiceForfait.cs
|
||||
//
|
||||
// Author:
|
||||
// Paul Schneider <paulschneider@free.fr>
|
||||
//
|
||||
// Copyright (c) 2015 Paul Schneider
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Lesser General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Yavsc.Model.FrontOffice.Billing
|
||||
{
|
||||
/// <summary>
|
||||
/// A set price.
|
||||
/// </summary>
|
||||
public class SetPrice: Price
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the minimum count.
|
||||
/// </summary>
|
||||
/// <value>The minimum count.</value>
|
||||
[Range(0,int.MaxValue)]
|
||||
public int MinCount { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue