Moved SaleForm code to Controller, have to put Exception handlers for PermissionException

This commit is contained in:
unknown
2011-01-11 01:19:11 +05:30
parent 853fad0692
commit c63bc62304
9 changed files with 592 additions and 480 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Tanshu.Accounts.PointOfSale
{
public class PermissionException : Exception
{
public PermissionException(string message)
: base(message)
{
}
}
}