Inheritance: IUserService
Example #1
0
 public UserServiceTest()
 {
     db = new FelBookDBEntities();
     wallServ = new WallService(db);
     userService = new UserService(db, wallServ);
 }
Example #2
0
 public void UserServiceConstructorTest()
 {
     db = new FelBookDBEntities();
     wallServ = new WallService(db);
     userService = new UserService(db, wallServ);
     Assert.IsNotNull(userService);
 }