* App.master: * datepair.js: * Book.aspx: * datepair.min.js: * LocalizedText.resx: * jquery.datepair.js: * jquery-ui-1.11.4.js: * jquery.timepicker.js: * BookQuery.cs: * jquery-1.11.3.min.js: * LocalizedText.fr.resx: * jquery.datepair.min.js: * WebCatalogExtensions.cs: * GoogleController.cs: * LocalizedText.Designer.cs: * jquery.timepicker.min.js: * jquery.timepicker.css: * Text.cs: * Euro.cs: * Unit.cs: * Link.cs: * Note.cs: * LocalizedText.fr.Designer.cs: * Brand.cs: * Label.cs: * Scalar.cs: * FrontOfficeController.cs: * Period.cs: * Option.cs: * Service.cs: * Catalog.cs: * Product.cs: * CheckBox.cs: * Currency.cs: * SaleForm.cs: * TextInput.cs: * FormInput.cs: * FilesInput.cs: * SelectItem.cs: * FormElement.cs: * SelectInput.cs: * RadioButton.cs: * StockStatus.cs: * ProductImage.cs: * CatalogHelper.cs: * CatalogManager.cs: * ProductCategory.cs: * PhysicalProduct.cs: * ui-icons_ffffff_256x240.png: * ui-icons_cccccc_256x240.png: * CatalogProvider.cs: * ui-icons_a83300_256x240.png: * ui-icons_222222_256x240.png: * ui-icons_4b8e0b_256x240.png: * ui-bg_glass_20_555555_1x400.png: * ui-bg_glass_40_0078a3_1x400.png: * ui-bg_glass_40_ffc73d_1x400.png: * ui-icons_222222_256x240.png: * ui-icons_a83300_256x240.png: * ui-icons_cccccc_256x240.png: * ui-icons_4b8e0b_256x240.png: * ui-icons_ffffff_256x240.png: * ui-bg_glass_40_0078a3_1x400.png: * ui-bg_glass_20_555555_1x400.png: * ui-bg_inset-soft_30_f58400_1x100.png: * ui-bg_inset-soft_25_000000_1x100.png: * ui-bg_glass_40_ffc73d_1x400.png: * ui-bg_gloss-wave_25_333333_500x100.png: * ui-bg_highlight-soft_80_eeeeee_1x100.png: * ui-bg_inset-soft_30_f58400_1x100.png: * ui-bg_inset-soft_25_000000_1x100.png: * ui-bg_gloss-wave_25_333333_500x100.png: * ui-bg_highlight-soft_80_eeeeee_1x100.png: * CatalogProviderConfigurationElement.cs: * CatalogProvidersConfigurationSection.cs: * CatalogProvidersConfigurationCollection.cs: Date pairing at booking, Fixes the client side ui, concerning the dates and times * MyClass.cs: * WorkFlowManager.cs: * IContentProvider.cs: * FrontOfficeController.cs: * XmlCatalog.cs: * NpgsqlContentProvider.cs: * Price.cs: * XmlCatalogProvider.cs: * PriceOnItemCount.cs: refactoring: a dedicated name space for the catalog * ChooseADate.aspx: WIP * Web.csproj: date pairing : includes the javascript modules
84 lines
2.6 KiB
C#
84 lines
2.6 KiB
C#
//
|
|
// AskForADate.cs
|
|
//
|
|
// Author:
|
|
// Paul Schneider <paulschneider@free.fr>
|
|
//
|
|
// Copyright (c) 2014 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;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Yavsc.Model.Calendar
|
|
{
|
|
/// <summary>
|
|
/// Ask for A date.
|
|
/// </summary>
|
|
public class BookQuery
|
|
{
|
|
|
|
/// <summary>
|
|
/// Gets or sets the prefered date.
|
|
/// </summary>
|
|
/// <value>The prefered date.</value>
|
|
[DataType(DataType.Date)]
|
|
[DisplayFormat(DataFormatString = "{0:yyyy/MM/dd}", ApplyFormatInEditMode = true)]
|
|
[Display(ResourceType=typeof(LocalizedText),Name="StartDate")]
|
|
public DateTime StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the minimum time.
|
|
/// </summary>
|
|
/// <value>The minimum time.</value>
|
|
[RegularExpression("\\d\\d:\\d\\d")]
|
|
[Display(ResourceType=typeof(LocalizedText),Name="StartHour")]
|
|
public string StartHour { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the max date.
|
|
/// </summary>
|
|
/// <value>The max date.</value>
|
|
[Display(Name="EndDate",ResourceType=typeof(LocalizedText))]
|
|
[DataType(DataType.Date)]
|
|
[DisplayFormat(DataFormatString = "{0:yyyy/MM/dd}", ApplyFormatInEditMode = true)]
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets the minimal duration.
|
|
/// </summary>
|
|
/// <value>The duration.</value>
|
|
[RegularExpression("\\d\\d:\\d\\d")]
|
|
[Required(ErrorMessage= "S'il vous plait, saisissez une durée minimale d'intervention")]
|
|
[Display(Name="EndHour",ResourceType=typeof(LocalizedText))]
|
|
public string EndHour { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the person.
|
|
/// </summary>
|
|
/// <value>The name of the user.</value>
|
|
[Display(Name="Person",ResourceType=typeof(LocalizedText))]
|
|
public string Person { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the role.
|
|
/// </summary>
|
|
/// <value>The role.</value>
|
|
[Display(Name="Role",ResourceType=typeof(LocalizedText))]
|
|
public string Role { get; set; }
|
|
}
|
|
}
|
|
|