Click here to Skip to main content
15,896,369 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a Business & Presentation Layer. I am trying to access a method in the Business Layer from the Presentation Layer.
// Presentation Layer Code
Grade grd = new Grade();
grd = Businesslayer.GetGradeID((int)gradeId);


Grade is a Class & GetGradeID is the method in the BusinessLayer.

Error I am getting is <<Cannot Implicitly convert type BusinessLayer.Grade to PresentationLayer.Grade>>

Any help please.
Posted
Updated 3-Oct-11 11:29am
v2

Hi,

Do I am right to say that from your Businesslayer you are retrieving
this list of Grade?
If I am right the Declaration on Presentation Layer should be:


var  grd = Businesslayer.GetGradeID((int)gradeId);


grd example contents List of Grade

Hope this could help...

Remember to mark as helpful if it help....

Regards,
Algem
 
Share this answer
 
v4
Hi Algem.

You understood me correctly. However, im using c# with a normal desktop application so i changed the var to an Object and worked perfectly fine.

Regards
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900