예제 #1
0
        public void DeleteElementRangeByID(string ID)
        {
            ElementRangeBLL elementRangeBLL = new ElementRangeBLL();

            elementRangeBLL.DeleteElementRangeByID(ID);
        }
예제 #2
0
        public void CreateElementRange([FromBody] ElementRange elementRange)
        {
            ElementRangeBLL elementRangeBLL = new ElementRangeBLL();

            elementRangeBLL.CreateElementRange(elementRange);
        }
예제 #3
0
        public void PutElementRangeByID([FromBody] ElementRange elementRange)
        {
            ElementRangeBLL elementRangeBLL = new ElementRangeBLL();

            elementRangeBLL.PutElementRangeByID(elementRange);
        }
예제 #4
0
        public List <ElementRange> GetAllElementRangeByID(string ID)
        {
            ElementRangeBLL elementRangeBLL = new ElementRangeBLL();

            return(elementRangeBLL.GetAllElementRangeByID(ID));
        }