Exemple #1
0
        public List <Stavka> GetStavka(int?id)
        {
            List <Stavka>  stavkas = new List <Stavka>();
            FakturaContext c       = new FakturaContext();

            foreach (var i in c.Stavke)
            {
                if (i.RacunId == id)
                {
                    stavkas.Add(i);
                }
            }


            return(stavkas);
        }
Exemple #2
0
 public RacunService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public BaseReadService(FakturaContext context, IMapper mapper)
 {
     Context = context;
     _mapper = mapper;
 }
Exemple #4
0
 public AddFakturaModel(FakturaContext context)
 {
     this.context = context;
 }
Exemple #5
0
 public KorisnikService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemple #6
0
 public ProizvodjacService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public StavkeService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public PorezService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public VrstaPlacanjaService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public KupacService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public JedinicaMjereService(FakturaContext context, IMapper mapper) :
     base(context, mapper)
 {
 }
Exemple #12
0
 public HomeController(FakturaContext context)
 {
     _context = context;
 }
Exemple #13
0
 public ValutaService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public DokumentService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemple #15
0
 public ArtiklService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public BaseCRUDService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemple #17
0
 public GradService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public SkladisteService(FakturaContext context, IMapper mapper) : base(context, mapper)
 {
 }