//PUT: api/majstor/registracioni_broj sahiste
        public MajstorPregled Put(int id, [FromBody] MajstorPregled st)
        {
            MajstorPregled majstor = DTOManager.UpdateMajstorPregled(st, id);

            return(majstor);
        }
        //GET: api/majstor/registracioni_broj sahiste
        public MajstorPregled Get(int id)
        {
            MajstorPregled majstor = DTOManager.GetMajstorBasic(id);

            return(majstor);
        }