コード例 #1
0
ファイル: Query.cs プロジェクト: ScottTracy/HumaneSociety
        public static void RunEmployeeQueries(Employee employee, string crudResponse)
        {
            CrudFunction EmployeeRef = setDelegate(crudResponse);

            EmployeeRef(employee);
        }
 public frmConfirmAction(CrudFunction crudFuction)
 {
     InitializeComponent();
     lblPrompt.Content = "Are you sure you would like to " + crudFuction.ToString() + " this record? This is your last chance.";
 }