11 lines
352 B
C#
11 lines
352 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public delegate void ShowProgessDelegate(decimal mininum, decimal maximum, decimal current, string message);
|
|||
|
//public delegate UserBO IsInRole(bool authenticated, decimal maximum, decimal current, string message);
|
|||
|
}
|