Skip to content

ddellagiacoma/introsde-2017-localdatabaseservice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Local Database Service (RESTful)

This service is part of the project described here.

LocalDatabaseService is a RESTful service that provides CRUD operation on its data. This Service contains the application database and its models are:

public class Person{
  int idPerson, 
  String firstname, 
  String lastname, 
  String birthdate, 
  String email, 
  String genre, 
  String password, 
  int nGoalAchieved, 
  int nTotalGoal, 
  int idLifeStyle, 
  int idLevel,
  LifeStyle lifeStyle,
  Level level
}
public class LifeStyle{
  int idLifeStyle, 
  String style, 
  String description
}
public class Level{
  int idLevel, 
  String name, 
  String description, 
  int nGoalNecessary
}