* blanc.png: * logo-white.png: * musician-923526_1280.jpg: * musician-923526_1.nb.jpg: * musician-923526_1.nbb.jpg: * musician-923526_1280.s.jpg: * musician-923526_1.nbbi.jpg: * musician-923526_1.nb.xs.jpg: * live-concert-388160_1280.jpg: * musician-923526_1280.xxs.jpg: * musician-923526_1.nbb.xs.jpg: * musician-923526_1.nb.xxs.jpg: * musician-923526_1.nbbi.xs.jpg: * musician-923526_1.nbb.xxs.jpg: * musician-923526_1.nbbi.xxs.jpg: * live-concert-388160_1280.s.jpg: * live-concert-388160_1280.xxs.jpg: images * EventCirclesPub.cs: * BackOfficeController.cs: * FrontOfficeController.cs: * NominativeEventPub.cs: * BackOfficeController.cs: refabrication * Commande.cs: implémente une description pour toute commande, dans la classe concrete * SimpleBookingQuery.cs: la description d'une commande simple de rdv * GoogleHelpers.cs: implemente l'envoi d'une notification nominative (à un prestataire en particulier) * LocalizedText.resx: * LocalizedText.fr.resx: * LocalizedText.Designer.cs: * LocalizedText.fr.Designer.cs: traductions * WorkFlowManager.cs: envoie une notification à la demande de devis d'un client * YavscModel.csproj: notifications privée.
48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
//
|
|
// EventPub.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.Web.Http;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Yavsc.Model;
|
|
using Yavsc.Model.RolesAndMembers;
|
|
using Yavsc.Model.Circles;
|
|
using Yavsc.Model.FrontOffice;
|
|
|
|
namespace Yavsc.Model.Calendar
|
|
{
|
|
/// <summary>
|
|
/// Event pub.
|
|
/// </summary>
|
|
public class EventCirclesPub: YaEvent
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the circles.
|
|
/// </summary>
|
|
/// <value>The circles.</value>
|
|
[Required(ErrorMessageResourceName="DoSpecifyCircles",ErrorMessageResourceType=typeof(LocalizedText)),
|
|
Display(ResourceType=typeof(LocalizedText),Name="Circles")]
|
|
public long [] CircleIds { get; set; }
|
|
}
|
|
|
|
}
|
|
|
|
|