Démarre l'implementation
des methodes de réservation
This commit is contained in:
parent
fe97f14831
commit
66993346cb
2 changed files with 17 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* FrontOfficeController.cs: Démarre l'implementation des
|
||||||
|
methodes de réservation
|
||||||
|
|
||||||
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* MEA.sql: définit la valeur MEA du profile (Main Exerted
|
* MEA.sql: définit la valeur MEA du profile (Main Exerted
|
||||||
|
|
|
||||||
|
|
@ -249,9 +249,9 @@ namespace Yavsc.Controllers
|
||||||
/// Booking the specified model.
|
/// Booking the specified model.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="model">Model.</param>
|
/// <param name="model">Model.</param>
|
||||||
public ActionResult Booking (BookingQuery model)
|
public ActionResult EavyBooking (BookingQuery model)
|
||||||
{
|
{
|
||||||
return View ();
|
return View (model);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -290,5 +290,15 @@ namespace Yavsc.Controllers
|
||||||
return View (usp);
|
return View (usp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Booking the specified model.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="model">Model.</param>
|
||||||
|
public ActionResult Booking (SimpleBookingQuery model)
|
||||||
|
{
|
||||||
|
if (model.Needs == null)
|
||||||
|
model.Needs = SkillManager.FindSkill ("%");
|
||||||
|
return View (model);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue