反编译出现的错误
using System;using System.Data;using Z.Entity;using System.Data.SqlClient;using System.Collections;using System.Collections.Generic;namespace Z.DALFactory{ using System; using System.Data; using Z.Entity; using System.Data.SqlClient; using System.Collections; using System.Collections.Generic; public interface IAward { void AddAward(AwardInfo model); void DeleteAward(int AwardId); int ExistsAward(int AwardId); [color=#FF0000]DataTable getAllAwards();[/color] int GetAwardMaxId(); void UpdateAward(AwardInfo model); }}