Hey Champs,
can anyone explain me what all things i should consider 
while designing a N-tier architecture.


like for example i have the folowing step from Datasource to Presentation layer

how do differentiate the functionality between Dataaccess Layer and 
Businesslogic Layer

Please have a look at following

 

SQL Data source
 ||
 ||
 ||
this function is written in Dataaccess Layer
+++++++++++++++++++++++++++++++++++++++++++++
public DataTable GetMyHotels(string UID)
{
 DataTable objDT=new DataTable("Dt_HotelList");

 return objDT;
}
 ||
 ||
 ||
 ||
this function is written in Businesslogic Layer
+++++++++++++++++++++++++++++++++++++++++++++
public DataView GetHotelList(string UserID)
  {
DataTable DT=objHotel.GetMyHotels(UserID); 
  
  DataView DV= new DataView(DT); 
  return DV;
  }
 ||
 ||
 ||
 ||
Presentation layer



Thanks & Regards

Arindam 
Web Designer & Developer  




                
---------------------------------
 Too much spam in your inbox? Yahoo! Mail gives you the best spam protection 
for FREE!
http://in.mail.yahoo.com

[Non-text portions of this message have been removed]



 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to