Hello everyone.
I am creating a website. In this website I add three folders:
- Entities
- Business logic
- Data access logic
Now I wanna to access entities folder class functions into business logic folder class.
But when I try to add namespace of that class into my another class, it does not show the names of classes (no intelligence).
Here is my code of Entity class
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
/// Summary description for State
/// </summary>
namespace StateBLL
{
public class State
{
#region private variable
private string _State;
#endregion
#region Properties
public string State
{
get
{
return _State;
}
set
{
_State = value;
}
}
#endregion
}
}
I Want to access this class (StateBLL) in another class.
But I am not able to do this.
Please tell me where I am wrong