I have a Separate Business Layer project (Class library) and it has a entity class like this.
public class Company
{
public int Id{get;set}
public Name string {get;set;}
}
I've reference this dll to MVC project and used this company class as model class for the view. Is this a good practice to use Entity class as model or is there any good way to implement this.