public IEnumerable <data_allModel.Format_Detail> GetById(int id)
        {
            data_allModel model = new data_allModel();

            return(model.GetById(id));
        }
        public IEnumerable <data_allModel.Format_Detail> GetByPositionAndMinor(int Position, int BeaconMinor)
        {
            data_allModel model = new data_allModel();

            return(model.GetByPostionAndMinor(Position, BeaconMinor));
        }
        public IEnumerable <data_allModel.Format_Detail> GetAll()
        {
            data_allModel model = new data_allModel();

            return(model.GetAll());
        }