/// <summary>
 /// Initializes a new instance of the RoleSvc class by creating a object of RoleDao class.
 /// </summary>
 public UserRoleAssignmentSvc()
 {
     this.userRoleAssignmentDao = new UserRoleAssignmentDao();
     this.userSvc = GatekeeperFactory.UserSvc;
     this.roleSvc = GatekeeperFactory.RoleSvc;
     this.appSvc = GatekeeperFactory.ApplicationSvc;
 }
Example #2
0
 public ApplicationUserSvc()
 {
     this.userDao = new ApplicationUserDao();
     this.appSvc = GatekeeperFactory.ApplicationSvc;
     this.userSvc = GatekeeperFactory.UserSvc;
 }