Exemplo n.º 1
0
        public IHttpActionResult Get()
        {
            KullaniciBLL kullaniciBusiness = new KullaniciBLL();
            var          model             = kullaniciBusiness.Get();

            return(Ok(model));
        }
Exemplo n.º 2
0
        public List <KullaniciDTO> Get(int sirketId)
        {
            KullaniciBLL kullaniciBusiness = new KullaniciBLL();
            var          model             = kullaniciBusiness.Get(sirketId);

            return(model);
        }