コード例 #1
0
ファイル: OglasService.svc.cs プロジェクト: gpanic/fleamart
 public bool dodajZeljo(Oglas s, Uporabnik u)
 {
     SeznamZelja sez = new SeznamZelja();
     sez.Oglas = s;
     sez.Uporabnik = u;
     return szdao.Create(sez);
 }
コード例 #2
0
ファイル: OglasService.svc.cs プロジェクト: gpanic/fleamart
 public bool CreateOglas(Oglas o)
 {
     return odao.Create(o);
 }
コード例 #3
0
ファイル: OglasService.svc.cs プロジェクト: gpanic/fleamart
 public bool UpdateOglas(Oglas o)
 {
     return odao.Update(o);
 }