Have been working on my applied framework project for the past week without many issues.
Today I noticed that I can not access my AETransfersEO class in my UI GridEdit page.
I can see all other classes listed such as PTORequestEO, HolidayEO but the class built by the CodeGenerator does not show. The only thing remotely close is AETransfer which is my DAL object.
I have checked all of the using references they all check out. Went through PTORequestEO and my AETransfersEO, all of the using statements check out. I should not need to add any references since they have already been added in the project.
During compile I get errors saying it can not find the object AETransfersEO.
Error:
Code:
Error 8 The type or namespace name 'AETransfersEO' could not be found (are you missing a using directive or an assembly reference?)
Below is the header information for the files in question.
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using V2.PaidTimeOffDAL.Framework;
using V2.PaidTimeOffDAL;
using V2.PaidTimeOffBLL.Framework;
namespace V2.PaidTimeOffBLL
{
#region AETransfersEO
[Serializable()]
public class AETransfersEO : ENTBaseEO
Code:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using V2.PaidTimeOffBLL.Framework;
using V2.PaidTimeOffBLL;
using System.Collections.Generic;
using System.Drawing;
using System.Collections.Specialized;
public partial class AETransfer : BaseEditPage<AETransfersEO>
Notice how above it can not find the class in the UI page?
I have checked everything that I can. I am officially stomped now.
What is preventing me from seeing my class?
The only thing that I can can come up with relates to why the DAL AETransfersData class is referenced as AETransfer. However this is the only class I see in my intellisense.
Is there a trick or shortcut to seeing what my EO created class is referenced as if at all?
Should I rebuild it and do something differently? If so what?
Thanks