private void InitRezerwacjeUzytkownika() { var wypozyczenia = new WSTApi().GetRezerwacje(int.Parse(Global.Id_wybranego_uzytkownika)); gvRezerwacje.DataSource = wypozyczenia.Data; gvRezerwacje.DataBind(); }
private void InitUsunProdukt() { var produkty = new WSTApi().GetProdukty(); gvProdukty.DataSource = produkty.Data; gvProdukty.DataBind(); }
protected void lnkDelete(Object sender, CommandEventArgs e) { int id = int.Parse(e.CommandArgument.ToString()); var produkty = new WSTApi().DelProdukty(id); Response.Redirect("UsunProdukt.aspx"); }
private void InitUsunUzytkownika() { var uzytkownicy = new WSTApi().GetUzytkownicy(); gvUzytkownicy.DataSource = uzytkownicy.Data; gvUzytkownicy.DataBind(); }
private void InitWypozyczeniaUzytkownika() { var wypozyczenia = new WSTApi().GetWypozyczeniaUzytkownika(Global.Id_wybranego_uzytkownika); gvWypozyczenia.DataSource = wypozyczenia.Data; gvWypozyczenia.DataBind(); }
protected void lnkZakoncz(Object sender, CommandEventArgs e) { int id = int.Parse(e.CommandArgument.ToString()); var Wypozyczenia = new WSTApi().ZakWypozyczenie(id); Response.Redirect("ZakonczWypozyczenie.aspx"); }
private void InitZakonczWypozyczenie() { var Wypozyczenia = new WSTApi().GetWypozyczenia(); gvWypozyczenia.DataSource = Wypozyczenia.Data; gvWypozyczenia.DataBind(); }
protected void lnkDelete(Object sender, CommandEventArgs e) { int id = int.Parse(e.CommandArgument.ToString()); var rezerwacje = new WSTApi().DelRezerwacje(id); Response.Redirect("MojeRezerwacje.aspx"); }
private void InitRezerwacje() { var rezerwacje = new WSTApi().GetRezerwacje(Global.uzytkownicy[0].Id); gvRezerwacje.DataSource = rezerwacje.Data; gvRezerwacje.DataBind(); }
protected void btnSave_Click(object sender, System.EventArgs e) { var api = new WSTApi(); var result = api.AddProdukt(GetProduktDTO()); if (!result.Success) { Trace.Warn(result.Errors); lblInfo.Text = "Błąd"; panelInfo.CssClass = "alert alert-danger"; } else { crtlDodajProdukt.ClearControls(); lblInfo.Text = "Sukces"; panelInfo.CssClass = "alert alert-success"; } }
protected void btnSave_Click(object sender, System.EventArgs e) { var api = new WSTApi(); var result = api.Rejestracja(GetUzytkownikDTO()); if (!result.Success) { Trace.Warn(result.Errors); lblInfo.Text = "Błąd."; panelInfo.CssClass = "alert alert-danger"; } else { crtlRejestracja.ClearControls(); lblInfo.Text = "Witaj " + Global.uzytkownicy[0].Imie + " " + Global.uzytkownicy[0].Nazwisko; panelInfo.CssClass = "alert alert-success"; Global.uzytkownicy = result.Data; Response.Redirect("Default.aspx"); } }
protected void btnSave_Click(object sender, System.EventArgs e) { var api = new WSTApi(); var result = api.GetUzytkownik(GetLogowanieDTO()); if (!result.Success) { Trace.Warn(result.Errors); lblInfo.Text = "Niepoprawne dane logowania."; panelInfo.CssClass = "alert alert-danger"; } else { crtlLogowanie.ClearControls(); lblInfo.Text = "Zalogowano"; panelInfo.CssClass = "alert alert-success"; Global.uzytkownicy = result.Data; Response.Redirect("Default.aspx"); } }
protected void lnkDelete(Object sender, CommandEventArgs e) { int id = int.Parse(e.CommandArgument.ToString()); var uzytkownicy = new WSTApi().DelUzytkownicy(id); }