在我的程序中,我收到错误消息,找不到ISaleManagerUI
的类型和命名空间我不明白为什么它不起作用,我不知道如何解决它。有人可以指出我正确的方向。
我有一个名为ISaleManagerUI.cs的类
这是下面的代码谢谢
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
using Antiques;
using AntiqueSales;
namespace Antiques
{
public partial class About : System.Web.UI.Page, ISaleMangerUI
{
SaleList saleList;
protected void Page_Load(object sender, EventArgs e)
{
try
{
if (!ReferenceEquals(null, Session["ID"]))
{
Sale sale = new Sale((string)Session["ID"], (DateTime)Session["Date"], (string)Session["Location"], (double)Session["Picth Cost"], (int)Session["Capacity"],
(bool)Session["Yes"], (bool)Session["No"]), (string)Session["Charity"], (string)Session["Catering"];
saleList = (SaleList)Application["SaleList"];
saleList.addSale(sale);
Application["SaleList"] = saleList;
UpdateListbox();
}
}
catch (DuplicateIdException)
{
// UpdateListbox();
}
//lblError.Text = null;
}
答案 0 :(得分:0)
我假设您的意思是“名为ISaleManagerUI的接口”。我相信你所需要的只是添加一个using指令。尝试使用“ISaleManagerUI的命名空间”添加。