28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public static class RolesConstants
|
|
{
|
|
public const string SALES_CHECKOUT = "Sales/Checkout";
|
|
public const string SALES_SALES_BILL = "Sales/SalesBill";
|
|
public const string SALES_SALE_DETAIL = "Sales/SaleDetail";
|
|
public const string SALES_VOID_BILL = "Sales/VoidPrintedBill";
|
|
public const string SALES_EDIT_BILL = "Sales/EditBill";
|
|
public const string SALES_PRINT_KOT = "Sales/PrintKOT";
|
|
public const string SALES_PRINT_BILL = "Sales/PrintBill";
|
|
public const string SALES_CHANGE_RATE = "Sales/ChangeRate";
|
|
public const string SALES_EDIT_PRINTED_PRODUCT = "Sales/EditPrintedProduct";
|
|
|
|
public const string MASTER_PRODUCTS = "Master/Products";
|
|
|
|
public const string SECURITY_MANAGE_ROLES = "Security/ManageRoles";
|
|
public const string LOG_VIEW = "Log/View";
|
|
public const string MASTER_OWNER = "Master/Owner";
|
|
|
|
}
|
|
}
|