public ActionResult KliknijZaksiegujPlatnosc(PlatnoscEntity platnosc)
        {
            throw new NotImplementedException();

            _presenter.ZaksiegujPlatnosc(platnosc);
            return View("OK/Blad");
        }
        public bool ZaksiegujPlatnosc(PlatnoscEntity platnosc)
        {
            throw new NotImplementedException();

            _platnosc.DodajPlatnosc(platnosc);
            return true;
        }
Beispiel #3
0
        public bool ZaksiegujPlatnosc(PlatnoscEntity platnosc)
        {
            throw new NotImplementedException();

            _platnosc.DodajPlatnosc(platnosc);
            return(true);
        }
        public ActionResult KliknijZaksiegujPlatnosc(PlatnoscEntity platnosc)
        {
            throw new NotImplementedException();

            _presenter.ZaksiegujPlatnosc(platnosc);
            return(View("OK/Blad"));
        }
        public string ZapiszDoPliku(PlatnoscEntity platnosc, PlatnoscFormatZapisu format)
        {
            throw new NotImplementedException();

            // Utworz dokument ze wzgledu na format
            if (format == PlatnoscFormatZapisu.FormatTXT) {
                var document = FormatTxt(platnosc);
            } else {
                // inne formaty
            }

            // String bedzie zastapiony typem File w przyszlosci
            return "File()";
        }
Beispiel #6
0
        public string ZapiszDoPliku(PlatnoscEntity platnosc, PlatnoscFormatZapisu format)
        {
            throw new NotImplementedException();

            // Utworz dokument ze wzgledu na format
            if (format == PlatnoscFormatZapisu.FormatTXT)
            {
                var document = FormatTxt(platnosc);
            }
            else
            {
                // inne formaty
            }

            // String bedzie zastapiony typem File w przyszlosci
            return("File()");
        }
 public ActionResult KliknijDrukuj(PlatnoscEntity platnosc)
 {
     throw new NotImplementedException();
 }
        public ActionResult KliknijZapiszPlatnosc(PlatnoscEntity platnosc)
        {
            throw new NotImplementedException();

            return View("WidokPodsumowaniaPlatnosci");
        }
 public bool EdytujPlatnosc(PlatnoscEntity platnosc)
 {
     throw new NotImplementedException();
 }
 public void Drukuj(PlatnoscEntity platnosc)
 {
     //drukowanie...
 }
 public string FormatTxt(PlatnoscEntity platnosc)
 {
     throw new NotImplementedException();
 }
Beispiel #12
0
 public void Drukuj(PlatnoscEntity platnosc)
 {
     //drukowanie...
 }
Beispiel #13
0
 public string FormatTxt(PlatnoscEntity platnosc)
 {
     throw new NotImplementedException();
 }
 public ActionResult KliknijDrukuj(PlatnoscEntity platnosc)
 {
     throw new NotImplementedException();
 }
        public ActionResult KliknijZapiszPlatnosc(PlatnoscEntity platnosc)
        {
            throw new NotImplementedException();

            return(View("WidokPodsumowaniaPlatnosci"));
        }