日期:2014-05-17 浏览次数:20375 次
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); } }