Author: admin

  • Blog
  • Author: admin

C#.NET Business Logic Layer Class example

//here is the example of business logica layer class public class UserBll{#region Private Memebersprivate DashBoardData.UserData _objUserData;private DashBoardCollection.UserCollection _objUserCol;#endregion#region Methodspublic UserBll(){}public UserBll(DashBoardCollection.UserCollection obj){_objUserCol = obj;}#endregion#region Methodspublic void Add(){_objUserData = new DashBoardData.UserData(this._objUserCol);_objUserData.Operation(DashBoardData.OpertaionType.Add);}public void Update(){_objUserData = new DashBoardData.UserData(this._objUserCol);_objUserData.Operation(DashBoardData.OpertaionType.Update);}public void Delete(){_objUserData = new DashBoardData.UserData(this._objUserCol);_objUserData.Operation(DashBoardData.OpertaionType.Delete);}public Boolean CheckUserLogin(){_objUserData = new DashBoardData.UserData(this._objUserCol);return _objUserData.CheckUserLogin();}#endregion }

Display multiple columns in the Crystal Report.NET

While generating reports we are offten need to display data in multiple columns in cyrstal reports or any other report generation tool.Crystal Report provides very easy way to do it. Please follow the following steps to complete things.1) Open crystal report2) Go to the section exprert and then select details section3) Select ‘Format with multiple

How to convert a class library project into web application? What is web application? Difference between website and web application?

Web applications are there Visual Studio.Net 2003. After launch of Visual studio.Net Microsoft has introduced a new concept like website. But after huge demands community Microsoft has reintroduced Microsoft web applications project which is very similar to webapplication in vs.net 2003. With visual studio.net 2008 you will have both the options webapplication and website to

Some of the important shortcuts for Visual Studio Code

Visual studio code is a Great editor for the web development. I have started using it and I’m loving it more and more. For any editor shortcut keys are important you can do lots more without moving to mouse with a shortcut. In this blog post, we are going to learn about shortcuts for Visual