public async Task <bool> Modify(int _id, StockIssueDocketTypeModel _model)
        {
            StockIssueDocketType entity = await svcStockIssueDocketType.GetDetail(_id);

            if (entity == null)
            {
                return(false);
            }
            entity = iMapper.Map(_model, entity);
            return(await svcStockIssueDocketType.Modify(entity));
        }