コード例 #1
0
 public void setStatistiques(string type, DateTime date)
 {
     DalSingletonSmartVideoDB.Singleton().setStatistiques(type, date);
 }
コード例 #2
0
 public List <StatistiquesDTO> getStatistiques()
 {
     return(DalSingletonSmartVideoDB.Singleton().getStatistiques());
 }
コード例 #3
0
 public Boolean InsertLocation(int id, String user, int duree)
 {
     return(DalSingletonSmartVideoDB.Singleton().InsertLocation(id, user, duree));
 }
コード例 #4
0
 public List <LocationDTO> getLocation(string username)
 {
     return(DalSingletonSmartVideoDB.Singleton().getLocation(username));
 }
コード例 #5
0
 public Boolean InsertHits(int id, string type)
 {
     return(DalSingletonSmartVideoDB.Singleton().InsertHits(id, type));
 }
コード例 #6
0
 public Boolean InsertUser(UtilisateursDTO user)
 {
     return(DalSingletonSmartVideoDB.Singleton().InsertUser(user));
 }
コード例 #7
0
 public void UpdateUser(UtilisateursDTO user)
 {
     DalSingletonSmartVideoDB.Singleton().UpdateUser(user);
 }
コード例 #8
0
 public UtilisateursDTO findUser(string E)
 {
     return(DalSingletonSmartVideoDB.Singleton().findUser(E));
 }
コード例 #9
0
 public String Login(string E, string pass)
 {
     return(DalSingletonSmartVideoDB.Singleton().Login(E, pass));
 }