10 lines
233 B
C#
10 lines
233 B
C#
using System.Web.Mvc;
|
|
|
|
namespace BeWoPlanerMobil.Controllers
|
|
{
|
|
public abstract class SignableController : AbstractBaseController
|
|
{
|
|
public abstract ActionResult SaveSignature(FormCollection formCollection);
|
|
}
|
|
}
|